* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #121212;
    color: white;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.form-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

/* Boutons */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 60px; /* contrôle l’écart entre les boutons */
    margin-bottom: 30px; /* espace avec le titre */
}

.button-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

label {
    margin-bottom: 6px;
    font-size: 14px;
    color: #aaa;
}

button {
    padding: 12px 25px;
    background-color: #1f1f1f;
    border: 1px solid #333;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background-color: #333;
}

/* Titre du site */
.site-title {
    font-size: 36px;
    margin-bottom: 15px;
}

/* Champ texte */
.text-input {
    width: 300px;
    padding: 12px;
    background-color: #1f1f1f;
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    outline: none;
}

.text-input::placeholder {
    color: #777;
}
