@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Conteneur principal */
.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin: 0 auto;
    align-content: center;
    position: relative;
    height: 100%;
    width: auto;
}

/* Media queries pour les tailles d'écran */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Styles généraux */
html, body {
    background-color: #387f86 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    line-height: 1 !important;
    vertical-align: baseline;
}

/* Titres et texte */
h1, h2, p {
    font-family: "Inter", sans-serif !important;
    color: white;
    align-self: center;
    z-index: 10;
}

h1 {
    font-weight: 600;
    font-size: 65px;
}

h2 {
    margin-bottom: 35px !important;
    font-size: 20px !important;
    font-weight: 200 !important;
}

p {
    font-size: 20px;
}

/* Structure principale */
.wrapper {
    min-height: 100vh !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.header, .footer {
    width: 100% !important;
    background-color: #304A5C !important;
}

.header {
    height: 75px !important;
}

.footer {
    height: 60px !important;
}

.main {
    display: flex;
    flex-flow: column;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: 100%;
    width: 100%;
}

/* Logo */
.gc-logo {
    height: 100%;
    position: relative;
    width: 100px;
    display: inline-block;
    padding-bottom: 5px;
}

    .gc-logo > img.companyLogo {
        height: 100%;
        width: 100%;
        margin-left: 25px;
    }

/* Messages communs */
.message {
    line-height: 25px;
    margin-bottom: 35px;
}

/* Boutons */
.button {
    background-color: #304a5c;
    color: white;
    border-radius: 10px;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    font-family: "Inter", sans-serif !important;
    align-self: center;
    font-size: 20px;
    z-index: 10;
}

    .button:hover {
        background-color: #223542;
    }

/* Media query pour téléphone */
@media only screen and (max-width: 700px) {
    .container {
        padding-right: 10% !important;
        padding-left: 10% !important;
    }

    h1 {
        font-size: 30px;
    }

    p {
        font-size: 15px;
    }
}
