/* Layout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 380px;
    padding: 20px;
}

/* Card */
.login-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.login-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

/* Form */
.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    font-size: 15px;
}

input:focus {
    border-color: #0078ff;
    outline: none;
}

/* Button */
.btn-primary {
    width: 100%;
    padding: 12px;
    background: #0078ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #005fcc;
}

/* Footer */
.login-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.login-footer a {
    color: #0078ff;
    text-decoration: none;
}
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.toggle-eye {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 10px;
    padding-right: 45px; /* space for eye icon */
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    font-size: 15px;
}

.toggle-eye {
    position: absolute;
    right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}