/* Isso garante que a transição de cores seja suave */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Regras para o modo escuro */
.dark body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    color: #f1f5f9;
}

.dark .glass {
    background: rgba(30, 41, 59, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark b, .dark label {
    color: #f8fafc !important;
}

.dark .modern-input {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: #334155 !important;
    color: white !important;
}