.auth-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 400px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.auth-card input {
    background: rgba(255,255,255,0.08);
    border: none;
    color: white;
}

.auth-card input:focus {
    background: rgba(255,255,255,0.15);
    box-shadow: none;
    color: white;
}
.login-card {
    width: 400px;
    margin: auto;
    margin-top: 10vh;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.logo-title {
    font-size: 24px;
    font-weight: bold;
}
.password-tips {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.password-tips li {
    transition: 0.3s;
}
.register-card {
    width: 750px;
    max-width: 95%;
}

/* Permitir rolagem apenas se realmente necessário */
.auth-container {
    min-height: 100vh;
    padding: 40px 0;
}