/* Auth Forms Styles - Styles for authentication forms (login, register, reset-password) */

/* Header Container for Auth Pages */
.header-container {
    background-color: #f1f2f3;
}

/* Form Input Styles with Red Border */
.auth-input-error,
.auth-form input[type="email"].auth-required,
.auth-form input[type="password"].auth-required,
.auth-form input[type="text"].auth-required,
.auth-form input.auth-required,
.auth-checkbox-error {
    border: 1px #b04144 solid !important;
}

/* Session Status Indicator */
.session-status-hidden {
    display: none;
}

/* Registration Form Steps */
.register-step-hidden {
    display: none !important;
}

.register-step-visible {
    display: block !important;
}

/* Form Input Focus States */
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus,
.auth-form input[type="text"]:focus {
    border-color: #b04144;
    box-shadow: 0 0 0 0.2rem rgba(176, 65, 68, 0.25);
}

/* Checkbox Styles */
.auth-form .form-check-input:checked {
    background-color: #b04144;
    border-color: #b04144;
}

/* Button Hover States */
.auth-form .btn-primary {
    background-color: #b04144;
    border-color: #b04144;
}

.auth-form .btn-primary:hover {
    background-color: #8b3336;
    border-color: #8b3336;
}

/* Input Group Button */
.auth-form .input-group .btn-outline-default {
    border: 1px #b04144 solid !important;
}

.auth-form .input-group .btn-outline-default:hover {
    background-color: #b04144;
    border-color: #b04144;
    color: white;
}

/* Text Colors */
.text-green {
    color: #28a745 !important;
}

.text-green:hover {
    color: #1e7e34 !important;
    text-decoration: none;
}

/* Alert Customizations for Auth Pages */
.auth-form .alert-success {
    border-left: 4px solid #28a745;
}

.auth-form .alert-danger {
    border-left: 4px solid #b04144;
}

/* Footer Wrapper Spacing */
.footer-wrapper {
    margin-top: 2rem;
    padding: 1rem 0;
}

/* Session Status Styles */
#session-status {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

#session-status .fas {
    margin-right: 0.25rem;
}

/* Password Toggle Button */
.password-toggle-btn {
    border-left: none !important;
}

.password-toggle-btn:focus {
    box-shadow: none;
}

/* reCAPTCHA Container */
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* Remember Me Checkbox */
.remember-checkbox {
    accent-color: #b04144;
}

/* Form Validation Styles */
.auth-form .is-invalid {
    border-color: #b04144 !important;
}

.auth-form .invalid-feedback {
    color: #b04144;
    font-size: 0.875rem;
}

/* Step Indicator for Registration */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step-indicator .step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 0.5rem;
}

.step-indicator .step.active {
    background-color: #b04144;
    color: white;
}

.step-indicator .step.completed {
    background-color: #28a745;
    color: white;
}
