/* Style spécifique au conteneur principal */
#hContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Espacement sous le titre */
#hContainer h1 {
    margin-bottom: 15px;
}

/* Style des champs de saisie */
#hContainer input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style des boutons */
#hContainer button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    background-color: orangered;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

/* Effet au survol des boutons */
#hContainer button:hover {
    background-color: grey;
}

/* Dégradé orange en fond d'écran */
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: linear-gradient(to bottom, #f7b450, #ff5722);
    height: 100vh;
    margin: 0;
}