/**** Reset ****/

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/**** body ****/

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #242629;
}

/**** formulaire ****/

.form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 16px;
}

label,
.name {
    font-size: 20px;
    color: #94a1b2;
}

.name {
    padding: 16px;
    background-color: #16161a;
    border: 2px solid #7f5af0;
    border-radius: 8px;
    outline: none;
    /* Changer la couleur du curseur d'entrée (caret) */
    caret-color: #7f5af0;
}