/* Auth Pages Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    padding: 20px;
}

.auth-card {
    background: var(--bg2);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    color: var(--accent-gold);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.auth-form {
    margin-bottom: 30px;
}

/* Login specific form styles */
.login-form-group {
    margin-bottom: 30px;
}

.login-label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.login-input {
    width: 100%;
    padding: 25px 30px;
    background: var(--primary-black);
    border: 2px solid var(--border-gray);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 70px;
}

.login-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.login-input-error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}

.login-error-message {
    color: #e74c3c;
    font-size: 16px;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

.login-checkbox-group {
    margin-bottom: 35px;
}

.login-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
}

.login-checkbox-label input[type="checkbox"] {
    display: none;
}

.login-checkmark {
    width: 28px;
    height: 28px;
    background: var(--primary-black);
    border: 3px solid var(--border-gray);
    border-radius: 8px;
    margin-right: 18px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.login-checkbox-label input[type="checkbox"]:checked + .login-checkmark {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.login-checkbox-label input[type="checkbox"]:checked + .login-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-black);
    font-weight: bold;
    font-size: 16px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.forgot-password-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: #f4d03f;
}

.login-btn-primary {
    background: var(--accent-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 15px;
    padding: 22px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    height: 70px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn-primary:hover {
    background: #f4d03f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.auth-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
}

.auth-footer p {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-footer a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    color: #f4d03f;
}

.auth-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.auth-alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.auth-alert-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .login-btn-primary {
        width: 100%;
    }
    
    .login-input {
        font-size: 18px;
        padding: 20px 25px;
        height: 60px;
    }
    
    .login-label {
        font-size: 16px;
    }
    
    .login-checkbox-label {
        font-size: 16px;
    }
    
    .login-checkmark {
        width: 24px;
        height: 24px;
    }
}
