/** ===========================
    Estilos Login
=========================== **/

.login-box {
    width: 320px;
    padding: 25px;
    background: rgba(255,255,255,0.18);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

.login-box h2 {
    color: white;
    margin-bottom: 15px;
}

.login-box input {
    width: 90%;
    padding: 12px;
    margin: 12px 0;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}

.btn-entrar {
    width: 45%;
    padding: 12px;
    background: #0a6e3f;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}
.btn-entrar:hover {
    background: #095c35;
}

.btn-cancelar {
    width: 45%;
    background: #4a4a4a;
    color: white;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}
.btn-cancelar:hover {
    background: #3a3a3a;
}

.error {
    color: #ffdddd;
    background: #660000;
    padding: 8px;
    border-radius: 6px;
}
