.tus3e-reset-wrapper {
    max-width: 400px;
    margin: 50px auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center; /* centra contenuto */
}

/* Titolo della pagina */
.tus3e-reset-wrapper h2 {
    margin-bottom: 25px; /* aumenta spazio tra titolo e input */
}

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

/* Bottone blu */
.tus3e-reset-wrapper button {
    width: 160px; /* più stretto */
    padding: 13px 0; /* mantiene altezza */
    margin-bottom: 12px;
    border-radius: 4px;
    border: none;
    background: #4FB0E5; /* blu chiaro vivo */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

/* Hover bottone */
.tus3e-reset-wrapper button:hover {
    background-color: #5AC1F0; /* più brillante e vivo */
}

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

.tus3e-success {
    background: #dfd;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
}