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: 10%;
    margin-bottom: 5%;
}

button{
    background-color: var(--bouton);
    color: var(--paraph);
    font-size: xx-large;
    font-weight: bold;
    min-width: 300px;
    min-height: 80px;
    width: fit-content;
    padding: 0.5% 0.5%;

    border-radius: 20px;
    border: none;

    cursor: pointer;

    text-align: center;

    margin-top: 5%;
    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);
}

label{
    color: var(--paraph);
    font-size: x-large;
    font-weight: bold;
}

input{
    background-color: var(--champs);
    border-radius: 5px;
    min-height: 40px;
    margin-bottom: 10px;
    border: 2px solid var(--majeur);
    box-shadow: 0 4px 4px var(--ombres);
    color: var(--paraph);
}

div{
    display: flex;
    flex-direction: column;
    margin-inline: 10%;
}

.required {
    position: relative;
}

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

input[type=file] {
    display: none;
}

.upload{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.upload label{
    display: flex;
    flex-direction: column;
}

.upload span {
    padding: 8px 12px;
    background: var(--champs);
    color: var(--paraph);
    cursor: pointer;
    border-radius: 30px;
    min-width: 50%;
    max-width: 80%;
    text-align: center;
    font-size: x-large;
    border: 2px solid var(--majeur);
    transition: all 0.2s ease;
}

.upload span:hover {
    background: var(--bouton);
    transform: scale(1.03);
}

input[type="text"], input[type="password"] {
    font-size: x-large;
    padding: 12px 15px;
}

input[type="checkbox"]{
    display: inline-block;
    margin-right: 3%;
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.cgu {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-inline: 10%;
}

p{
    color: var(--attention);
    margin-left: 10%;
}

.co a{
    color: var(--majeur);
    font-size: xx-large;
    font-weight: bold;
    margin-inline: auto;
    margin-top: 4%;
}

.sanscompte a{
    color: var(--majeur);
    font-size: x-large;
    margin-inline: auto;
    margin-top: 4%;
    margin-bottom: 5%;
}

.mdpoubli{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-inline: 10%;
}

.mdpoubli a {
    color: var(--paraph);
    font-size: large;
    font-style: italic;
    text-align: right;
    cursor: pointer;
    text-decoration: none !important;
}

.mdpoubli a:visited{
    text-decoration: none !important;
    color: var(--paraph);
}

.mdpoubli a:hover {
    text-decoration: none !important;
}

h2{
    color: var(--paraph);
    text-align: center;
    font-size: xx-large;
    font-weight: normal;
    margin-inline: 10%;
}

