/* Auth Pages Styling */
.auth-section {
    background: #f8f9fa;
    min-height: 60vh;
}

.auth-form-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.auth-form-box h2 {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.auth-form-box .form-group {
    margin-bottom: 20px;
}

.auth-form-box label {
    display: block;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-form-box input[type="text"],
.auth-form-box input[type="email"],
.auth-form-box input[type="password"] {
    width: 100%;
    height: 50px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.auth-form-box input[type="text"]:focus,
.auth-form-box input[type="email"]:focus,
.auth-form-box input[type="password"]:focus {
    border-color: #ff6b35;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.auth-form-box .btn-submit {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.auth-form-box .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Active Button States for Header */
.theme-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: #fff !important;
    border-color: #ff6b35 !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.theme-btn.active:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.auth-form-box .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.auth-form-box .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.auth-form-box .gender-group {
    margin-bottom: 20px;
}

.auth-form-box .gender-group label {
    display: inline-block;
    margin-right: 20px;
    font-weight: 500;
    cursor: pointer;
}

.auth-form-box .gender-group input[type="radio"] {
    margin-right: 5px;
}

.auth-form-box .auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-form-box .auth-links a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-form-box .auth-links a:hover {
    color: #f7931e;
}

.auth-form-box .divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.auth-form-box .divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.auth-form-box .divider span {
    background: #fff;
    padding: 0 20px;
    color: #6c757d;
    font-size: 14px;
}

.auth-form-box .social-login {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.auth-form-box .social-btn {
    flex: 1;
    height: 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.auth-form-box .social-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-1px);
}

.auth-form-box .error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.auth-form-box .success-message {
    color: #28a745;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-form-box {
        padding: 30px 20px;
        margin-top: -30px;
    }
    
    .auth-form-box .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .auth-form-box .social-login {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .auth-form-box {
        padding: 25px 15px;
    }
    
    .auth-form-box h2 {
        font-size: 24px;
    }
}
