/* ========================================
   AUTH PAGES SIMPLE IMPROVEMENTS
   Clean and subtle enhancements
   ======================================== */

/* Auth Section */
.auth-section {
    padding: 40px 0;
}

/* Form Container */
.auth-section .form-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Auth Title */
.auth-section .auth-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
}

/* Form Groups */
.auth-section .form-group {
    margin-bottom: 18px;
}

.auth-section .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
    display: block;
}

/* Form Controls */
.auth-section .form-control {
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.auth-section .form-control:focus {
    border-color: #690BBA;
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 11, 186, 0.1);
}

/* Invalid State */
.auth-section .form-control.is-invalid {
    border-color: #dc3545;
}

.auth-section .invalid-feedback {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #dc3545;
}

/* Forget Password Link */
.auth-section .forget-link {
    color: #690BBA;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-decoration: none;
    display: inline-block;
}

.auth-section .forget-link:hover {
    color: #550A95;
    text-decoration: underline;
}

/* Submit Button */
.auth-section .submit-btn {
    width: 100%;
    height: 45px;
    background: #690BBA;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.auth-section .submit-btn:hover {
    background: #550A95;
}

/* Register Now Section */
.auth-section .register-now.no-account {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.auth-section .register-now.no-account p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
}

.auth-section .register-now.no-account a {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(105, 11, 186, 0.1);
    color: #690BBA;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-section .register-now.no-account a:hover {
    background: #690BBA;
    color: #ffffff;
}

/* Resend OTP Section */
.auth-section .resend_otp {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.auth-section .resend_otp button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(105, 11, 186, 0.1);
    color: #690BBA;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-section .resend_otp button:hover {
    background: #690BBA;
    color: #ffffff;
}

.auth-section .resend_otp button svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-section {
        padding: 30px 0;
    }

    .auth-section .form-content {
        padding: 25px 20px;
    }

    .auth-section .auth-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .auth-section .form-content {
        padding: 20px 15px;
    }

    .auth-section .auth-title {
        font-size: 20px;
    }
}
