* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg,  #111111, #151516);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.7);
    text-align: center;
}


.logo {
    width: 120px;
    margin-bottom: 20px;
}

.login-card h2 {
    margin-bottom: 25px;
    color: #005aec;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px;
}

.input-group span {
    margin-right: 8px;
    color: #1472f5;
}

.input-group input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #005aec;
    color: white;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #156cf7;
}

#message {
    margin-top: 15px;
    font-size: 14px;
}


/* Efeito de hover nos links para dar feedback visual */
.terms-group a:hover, 
.register-link a:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}

/* Deixar o link de cadastro com um pouco mais de respiro */
.register-link {
    border-top: 1px solid #333;
    padding-top: 15px;
}


/* Remove o fundo branco e a cor do texto preta no preenchimento automático */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #eb212100 inset !important; /* Substitua pelo código da cor do seu input */
    -webkit-text-fill-color: white !important; /* Cor do texto */
    transition: background-color 5000s ease-in-out 0s;
}