.tus3e-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
    background: transparent;
    padding-top: 40px;
}

.tus3e-login-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: none;
}

/* Input */
.tus3e-login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    font-size: 15px;
    background: #fff;
}

/* Bottone */
.tus3e-login-form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

/* Pulsante submit */
.tus3e-login-form button[type="submit"] {
    background: #4FB0E5 ; /* blu chiaro vivo */
    color: #f5f5f5;      /* bianco chiaro */
    font-size: 14px;      /* testo più piccolo */
}

/* Hover pulsante submit */
.tus3e-login-form button[type="submit"]:hover {
    background-color: #5CB8E0; /* più brillante e vivo */
    color: #fff;               /* mantiene bianco chiaro */
}

/* Pulsante secondario */
.tus3e-login-form button:not([type="submit"]) {
    background: #f1f1f1;
    color: #777;
    font-size: 14px; /* coerente con submit */
}

/* Login Google */
.tus3e-login-google {
    text-align: center;
    margin-top: 15px;
}

/* Link sotto il form */
.tus3e-login-links {
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin-top: 20px;
    color: #999;
}

.tus3e-login-links a {
    text-decoration: none;
    color: #999;
}

.tus3e-login-links a:hover {
    text-decoration: underline;
}

/* Messaggio errore */
.tus3e-error {
    background: #fdd;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
}