@import url(https://fonts.googleapis.com/css2?family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap);

:root{
    --blue:#070096;
    --orange:#FFAE00;
    --lightblue:#89E3FF;
    --white:#FFFFFF;
    --purple:#7557B1;
}

html {
    overflow-x: hidden ;
}

/* la typo appliquée a tous les textes */
a{
    font-size: 40px;
    font-family: 'Kodchasan';
    font-weight: 500px;
}

p{
    font-size: 30px;
    font-family: 'Kodchasan';
}

h1{
    font-size: 40px;
    font-family: 'Kodchasan';
    font-weight: 500px;
    color:var(--orange);
}

/* header*/
header{
    display:flex;
    justify-content: space-between;
    background:-webkit-linear-gradient(var(--blue), var(--lightblue));
    padding:20px;
}

header a, p{
    color:var(--orange);
    text-decoration: none;
}

#left{
    display:flex;
}

#right{
    display: flex;
    right:0;
}

#gauche{
    top:0;
    margin:40px;
}

#droit{
    right: 0;
    margin:40px;
}

/* body */
body{
    margin: 0;
    background-color: var(--blue);
    max-width: 100%;
    justify-content: center;
}

#inscription{
    text-align: center;
}

#formulaire{
    position:center;
    background-color:#7557B1;
    border-radius:10px;
    padding:15px;
    margin: auto;
    font-family: 'Kodchasan';
    color: var(--orange);
    width: 270px;
}

label{
    display: flex;
    margin-bottom: 10px;
    font-size: 20px;
}

input{
    display: flex;
    margin-bottom: 10px;
    font-size: 20px;
    border-radius: 10px;
}

button{
    display: flex;
    margin:0 auto;
    font-size:20px;
    border-radius: 10px;
    color:var(--orange);
    background-color: var(--blue);
}

.ici{
    font-size: 32px;
    text-decoration: none;
    color:var(--white);
}

#connec{
    text-align: center;
}

/*footer*/
footer{
    display:flex;
    justify-content: center;
    background:-webkit-linear-gradient(var(--lightblue), var(--blue));
    padding:20px;
    flex-direction: column;
}

footer p{
    color:var(--orange);
    text-align: center;
}

.instalink{
    display: flex;
    margin: auto;
}

.reseaux{
    text-decoration: none;
    padding:10px;
    color: var(--white);
    font-size: 70px;
}