body {
    background: radial-gradient(circle at top right, #1a1a1a, #0a0a0a, #000000);
    font-family: 'Inter', sans-serif;
}

.glass-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

input {
    font-size: 14px;
}

/* Estilização para Chrome Autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #121212 inset;
    transition: background-color 5000s ease-in-out 0s;
}


.input-group {
    transition: all 0.3s ease;
}

/* Efeito de brilho quando houver erro (opcional) */
.border-red-500\/50 {
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}