/* Container & Headers */
.auth-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-subtitle {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Form Grouping */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #333;
}

.required {
    color: #e74c3c;
    margin-left: 3px;
}

/* Input with Icon Wrapper */
.input-with-icon {
    position: relative;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Extra padding on the left for the icon */
    border: 1.5px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #2c3e50; /* LendQUBE Primary Color */
    background: #fff;
    box-shadow: 0 0 0 4px rgba(44, 62, 80, 0.1);
}

.input-with-icon input:focus + .input-icon {
    color: #2c3e50;
}

/* Security Info Box */
.info-note {
    background-color: #f0f7ff;
    border-left: 4px solid #004d40;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.info-note i {
    color: #3498db;
}

.info-note small {
    color: #444;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Button Styling */
/* .btn-submit {
    background: #2c3e50;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: #1a252f;
    transform: translateY(-1px);
} */

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

/* Footer Links */
.login-link {
    color: #00897b;
    text-decoration: none;
    font-weight: 600;
}

.login-link:hover {
    text-decoration: underline;
}


#passwordResetRequestForm {
    opacity: 0; /* Hidden by default */
    transition: opacity 0.5s ease;
    pointer-events: none; /* User can't click until location is verified */
}

/* Container for the success state */
.text-center.py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    text-align: center;
}

/* The Envelope Icon */
.fa-envelope-open-text {
    color: #2c3e50; /* LendQUBE Primary Dark Blue */
    display: block;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Header Text */
.fw-bold {
    font-weight: 700 !important;
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Subtext/Instructions */
.text-muted {
    color: #6c757d !important;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* "Try Again" Link Button */
.btn-link.text-decoration-none {
    color: #3498db;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.btn-link.text-decoration-none:hover {
    color: #2980b9;
    text-decoration: underline !important;
}

/* Manual Fade-In Fallback (if Animate.css isn't loaded) */
.animate__fadeIn {
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.toggle-password-svg {
    position: absolute;
    left: 15px; /* Matches your input-with-icon padding */
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 10;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.toggle-password-svg:hover {
    color: #2c3e50; /* LendQUBE Dark Blue */
}

.eye-icon .eye-slash {
    stroke: currentColor;
}