﻿/*
orange : rgb(238, 112, 90)
bleu : rgb(15, 116, 185)
 */

body {
    margin: 0;
    background: linear-gradient(180deg, rgb(172 172 172) 0%, rgb(241 241 241) 15%, rgba(255,255,255,1) 100%);
    background-repeat: no-repeat;
    font-family: Lato, sans-serif;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    display: flex;
    align-items: center;
    padding: 60px 20px 20px;
    color: rgb(15, 116, 185);
    text-transform: uppercase;
    flex-direction: column;
}

header #logo img {
    height: 100px;
}

header h1 {
    margin: 40px 0 0;
    font-size: x-large;
    color: black;
}

header #title {
    display: none;
}

header #slogan {
    font-size: large;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    header #slogan {
        display: inline;
    }
}

main {
    padding: 20px;
}

main a {
    color: rgb(15, 116, 185)
}

#logo-adenes {
    display:flex;
    justify-content:center;
    align-content:center;
    margin-bottom: 40px;
}

#logo-adenes img.izymo-logo {
    height: 60px;
    width:auto;
}

#logo-adenes img.maif-logo {
    height: 50px;
    width: auto;
}

footer {
    background-color: black;
    text-transform: uppercase;
    font-size: small;
}

footer .content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: white;
    flex-wrap: wrap;
}

footer .content div {
    margin: 5px;
}

footer a {
    color: white;
}

footer #logo-nb img {
    width: auto;
    height: 15px;
}

.content {
    margin: auto;
}

@media screen and (min-width: 768px) {
    .content {
        max-width: 1024px;
    }
}

@media screen and (min-width: 768px) {
    form {
        margin-left: 50px;
    }
}

form > div {
    margin: 10px;
    display: flex;
    align-items: center;
}

input[type=checkbox] {
    position: relative;
    cursor: pointer;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    appearance: none;
    border: 2px solid rgb(15, 116, 185);
    border-radius: 1px;
    background-color: white;
    margin-right: 20px;
}

input[type=checkbox]:checked:before {
    content: "";
    width: 5px;
    height: 10px;
    border: solid rgb(15, 116, 185);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(
            45deg
    );
    -ms-transform: rotate(45deg);
    transform: rotate(
            45deg
    );
    position: absolute;
    top: 0px;
    left: 4px;
}

input[type="radio"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    appearance: none;
    border: 2px solid rgb(15, 116, 185);
    border-radius: 50%;
    margin-right: 20px;
}

input[type="radio"]:checked {
    background-color: rgb(15, 116, 185);
}

label {
    font-size: 14px;
}

#submit {
    margin-top: 20px;
    justify-content: center;
}

button[type="submit"] {
    border: none;
    border-radius: 10px;
    background-color: rgb(15, 116, 185);
    color: white;
    font-weight: bold;
    padding: 15px 40px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: rgb(13, 87, 137);
}
