body {
    background: #d9d9d9;
    margin: 0;
    padding: 0;
}
.center-box {
    display: flex;
    height: calc(100vh - 60px); /* 60px = hauteur nav bar */
    justify-content: center;
    align-items: center;
}
.box {
    background: white;
    padding: 50px;           /* augmente l’espace intérieur */
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15); /* ombre un peu plus prononcée */
    text-align: center;
    width: 400px;             /* augmente la largeur */
    max-width: 90%;           /* reste responsive sur petits écrans */
}
.box h2{
    font-size: 30px;
}
input {
    padding: 15px;            /* champs plus grands */
    width: 100%;              /* prend toute la largeur de la box */
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

button {
    padding: 15px 30px;       /* bouton plus grand */
    font-size: 16px;
}

button:hover {
    background: seagreen;
}
.error {
    color: red;
    margin-bottom: 10px;
}