body {
    margin: 0;
    padding: 0;
    background-image: url(https://volpmanager.volpatoconnect.com/auth/resources/8xg3m/login/allcom-23/img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; /* Garante que a imagem fique centralizada */
    color: rgb(145, 137, 159);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

/* CONTAINER CENTRAL */
.container_login {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 350px; /* Aumentei um pouco para caber melhor os campos */
    background: rgba(255, 255, 255, 0.05); /* Leve fundo para dar profundidade */
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px); /* Efeito de vidro opcional */
}

/* LOGO - Agora acima de tudo */
#logo_volpato {
    width: 100%;
    overflow: auto;
    height: auto;
}

/* ESTRUTURA DE FORMULÁRIO E ÁREAS */
#areaLogin, #areaToken {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* INPUTS UNIFICADOS */
input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    box-sizing: border-box;
    background-color: rgb(247, 246, 249);
    font-size: 0.85rem;
    color: #444; /* Um pouco mais escuro para leitura */
    font-family: 'Poppins', sans-serif;
}

input:focus {
    outline: 2px solid #2c3e50; /* Destaque sutil ao focar */
}

/* BOTÕES UNIFICADOS */
#btnEnviarCodigo, #btnEntrar {
    width: 80%; /* Botão um pouco maior para facilitar o clique no mobile */
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    background-color: #2c3e50; /* Azul escuro da Volpato (ou use #666 como estava) */
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#btnEnviarCodigo:hover, #btnEntrar:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

/* TOAST NOTIFICATION (CSS que faltava) */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.toast-message {
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    font-size: 0.9rem;
    border-left: 5px solid #27ae60;
    color: #333;
}