body{
    font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
    background-color: var(--background);
}

h1{
    font-size: xxx-large;
    text-align: center;
    color: var(--majeur);
    margin-top: 5%;
    margin-bottom: 3%;
}

h2 {
    color: var(--paraph);
    text-align: center;
    font-size: xx-large;
    margin-bottom: 30px;
}

p{
    margin-left: 10%;
    font-size: large;
    line-height: 1.5;
}

.required {
    position: relative;
}

.required::after {
    content: "*";
    color: var(--attention);
    font-weight: bold;
    position: relative;
    right: -10px;
    font-size: x-large;
}

input[type="radio"] {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    cursor: pointer;
}

.verification-container {
    background-color: var(--blanc);
    border-radius: 20px;
    box-shadow: 8px 8px 4px var(--ombres);
    padding: 30px;
    margin: 0 auto;
    max-width: 700px;
    margin-bottom: 30px;
}

.info-text {
    font-size: large;
    color: var(--paraph);
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

input[type="checkbox"] {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

label {
    font-size: x-large;
    color: var(--paraph);
    line-height: 1.4;
}

button {
    background-color: var(--bouton);
    color: var(--paraph);
    font-size: xx-large;
    font-weight: bold;
    min-width: 200px;
    min-height: 60px;
    width: fit-content;
    padding: 0.5% 2%;
    
    border-radius: 20px;
    border: none;
    
    cursor: pointer;
    
    text-align: center;
    
    margin-top: 20px;
    margin-inline: auto;
    
    display: block;
    
    box-shadow: 8px 8px 4px var(--ombres);
    transition: all 0.2s ease-in-out;
}

button:hover {
    background-color: var(--majeur);
    color: var(--blanc);
    transform: translateY(-2px);
}

.navigation {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.nav-button {
    background-color: var(--bouton);
    color: var(--paraph);
    font-size: large;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 5px 5px 3px var(--ombres);
    transition: all 0.2s ease-in-out;
}

.nav-button:hover {
    background-color: var(--majeur);
    color: var(--blanc);
    transform: translateY(-2px);
}

.erreur {
    color: var(--attention);
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

a{
    text-decoration: none;
    color: var(--paraph);
}