/* public/css/login-style.css */
body { 
    font-family: 'Inter', sans-serif; 
    background: linear-gradient(135deg, #FCFBF7 0%, #FAF9F3 50%, #F3EAD3 100%);
}

@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

.input-field { 
    background-color: #f8fafc; 
    border: 1px solid #cbd5e1; 
    transition: all 0.3s ease; 
    color: #334155; 
}
.input-field:focus { 
    background-color: #ffffff; 
    border-color: #6366f1; 
    outline: none; 
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1); 
}

.tab-container { background-color: #f1f5f9; border: 1px solid #cbd5e1; padding: 4px; border-radius: 12px; }
.tab-active { background-color: #ffffff; color: #4f46e5; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; }
.tab-inactive { color: #64748b; }
.tab-inactive:hover { color: #334155; background-color: rgba(255,255,255,0.5); }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }