.auth-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--text);
}

.auth-card .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-dark);
    border-radius: 8px;
    background: white;
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
}

.error-message {
    background: rgba(232, 33, 39, 0.1);
    border: 1px solid var(--primary);
    color: #c41e22;
    padding: 12px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid var(--success);
    color: #27ae60;
    padding: 12px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .auth-section {
        padding: 20px 15px;
    }

    .auth-card {
        padding: 30px 20px;
    }

    .auth-card h2 {
        font-size: 1.5rem;
    }
}

/* Region select styling */
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.form-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.field-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 4px 0 8px 0;
}

/* reCAPTCHA widget */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

/* reCAPTCHA notice */
.captcha-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 15px;
}

/* Disabled button state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Forgot password link */
.forgot-link {
    text-align: center;
    margin-top: 15px;
}

.forgot-link a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.modal-content h3 {
    margin-bottom: 10px;
    color: var(--text);
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text);
}

/* Password Requirements */
.password-requirements {
    margin-top: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.85rem;
}

.password-requirements .req-title {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    padding: 3px 0;
    color: #999;
    transition: color 0.2s;
}

.password-requirements li.valid {
    color: #2ecc71;
}

.password-requirements li.valid::first-letter {
    content: "✓";
}

/* Password Toggle (Eye Icon) */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #333;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}
