.pagina-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.cartao-login {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(21, 16, 48, 0.3);
    text-align: center;
}

.logo-login {
    margin-bottom: 20px;
}

.cartao-login h2 {
    color: var(--gestfy-escuro);
    font-size: 28px;
    margin: 0 0 10px 0;
}

.cartao-login p {
    color: #64748b;
    margin-bottom: 30px;
}

.opcoes-login {
    text-align: right; 
    margin-bottom: 20px;
    margin-top: -10px; 
}

.link-esqueci {
    color: var(--gestfy-roxo);
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.link-esqueci:hover {
    text-decoration: underline;
}

.voltar-site {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.voltar-site a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.voltar-site a:hover {
    color: var(--gestfy-escuro);
}

/* Resposividade */
/* =========================================
   RESPONSIVIDADE (MOBILE) - LOGIN.CSS
   ========================================= */
@media (max-width: 480px) {
    .cartao-login {
        padding: 30px 20px;
    }
    .cartao-login h2 {
        font-size: 24px;
    }
}
/* Resposividade */