body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px;
    background: linear-gradient(to top right, #000000 40%, #666666);
    height:100%;
}

.logo {

    width:250px;
    position:absolute;
    left:50%;
    transform: translateX(-50%);


}

h1 {
    color: #fbfbfb;
    margin-top: 150px;
    font-family: "arboria", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2 {

    color: #fbfbfb;
    margin-top: 80px;
    font-family: "arboria", sans-serif;
    font-weight: 400;
    font-style: normal;

}

p {

    color:#fbfbfb;
    font-family: "arboria", sans-serif;
    font-weight: 400;
    font-style: normal;
}

form {
    
    display: flex;
    flex-direction:column;
    text-align: left;
    width:100%;
    max-width:400px;
    margin:auto;
    margin-top: 50px;
}

label {

    color:#fbfbfb;
}

input[type="text"]{
    width: 100%;
    height: 20px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #fbfbfb;
    border-radius: 5px;
    font-family: "arboria", sans-serif;
    font-weight: 400;
    font-style: normal;
}

input[type="email"]{
    width: 100%;
    height: 20px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #fbfbfb;
    border-radius: 5px;
    font-family: "arboria", sans-serif;
    font-weight: 400;
    font-style: normal;
    }

textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #fbfbfb;
    border-radius: 5px;
    font-family: "arboria", sans-serif;
    font-weight: 400;
    font-style: normal;
}


input[type="submit"] {
    background-color: #C5A643;
    color: white;
    border: none;
    border-radius: 5px;
    /* padding: 10px 20px; */
    cursor: pointer;
    margin:auto;
    font-family: "arboria", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-content: center;
}
input[type="submit"]:hover {
    background-color: #C18C23;
}

.footer {

    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    margin-top: 80px;

}

.footer a {

    text-decoration: none;
    list-style: none;
    color: #fbfbfb;
    padding: 10px;
    font-size: 0.8rem;
}




.politique {

    max-width: 800px;
    margin: auto;
    
}

.politique h2 {

    font-size: 30px;
    color: #C5A643;
}

.politique p {

    font-size:clamp(1rem, 2vw, 1.5rem );
    text-align: justify;
}

.politique p span {

    color:#C5A643 ;
}

@media screen and (max-width:430px) {

    input[type="submit"] {

        

    }
    
}