/* Custom Styles for Login, Register, and Verify Email pages */
:root {
    --auth-primary-gradient: linear-gradient(135deg, #FF6B00 0%, #FF8E3C 100%);
    --auth-glass-bg: rgba(255, 255, 255, 0.95);
}

.auth-page-body {
    font-family: 'Outfit', sans-serif !important;
    background: #f8f9fa !important;
    padding-bottom: 0 !important; /* Override admin-assets body padding */
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(255, 142, 60, 0.05), transparent);
    padding: 20px;
}

.glass-card {
    background: var(--auth-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.glass-card.wide {
    max-width: 1000px;
}

.auth-side-art {
    background: var(--auth-primary-gradient);
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.form-container { padding: 60px; }
.form-container.compact { padding: 50px 60px; }

.text-logo { font-size: 28px; font-weight: 700; letter-spacing: -1px; color: #FF6B00; }

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1.5px solid #EAEAEA;
    transition: 0.3s;
    font-size: 14px;
}

.form-control:focus {
    border-color: #FF6B00;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.btn-primary {
    background: var(--auth-primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.auth-footer { margin-top: 30px; text-align: center; }

.form-label { 
    font-weight: 700; 
    font-size: 11px; 
    letter-spacing: 0.5px; 
    color: #6c757d; 
    margin-bottom: 8px; 
    text-transform: uppercase; 
}
