:root {
    --color-bg: #0f172a;
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-surface-hover: rgba(255, 255, 255, 0.05);
    --color-text: #ffffff;
    --color-text-muted: #94a3b8;
    --color-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text);
}

input,
select {
    display: block;
    width: 100%;
    background: var(--color-surface) !important;
    border: 1px solid var(--color-border) !important;
    padding: 1rem 1.25rem !important; /* Aumentado para garantir altura e consistência */
    border-radius: 1.25rem !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    outline: none !important;
    transition: all 0.2s ease-in-out !important;
    box-sizing: border-box !important;
}

input:focus,
select:focus {
    background: var(--color-surface-hover) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
}

/* Ajuste específico para campos com ícone (Login) */
.relative.group input {
    padding-left: 3.5rem !important;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}


