/*
Styles généraux --------------------------------------------------------------------
Styles en MOBILE-FIRST
*/

* {
    /* Paramètres permettant que toutes les tailles de balise prennent en compte le padding */
    box-sizing: border-box;
}

html, body {
    font-family: "Muli", sans-serif;
    width: 100%;
    height: 100%;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #41408D;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 300;
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none !important;
}

/*
En-têtes -----------------------------------------------------------------------------------
*/
h1 {
    font-size: 1.8rem;
    font-weight: 500;
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.w-100 {
    width: 100%;
}

/*
Flexbox -----------------------------------------------------------------------------------
*/
.d-flex {
    display: flex;
}
.justify-content-end {
    justify-content: end;
}

/*
Marges -----------------------------------------------------------------------------------
*/
.mb-3 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 2rem;
}
.mb-5 {
    margin-bottom: 3rem;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mt-5 {
    margin-top: 3rem;
}

/*
Carte contenant les formulaires -----------------------------------------------------------------------------------
Style en mobile-first
*/
.card {
    border-radius: 20px 20px 0 0;
    background-color: white;
    flex: 1;
    width: 100%;
}

.card-body {
    padding: 20px 30px;
}


/*
Pied de page -----------------------------------------------------------------------------------
Style en mobile-first
*/
footer {
    padding: 20px 0;
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

footer img {
    display: block;
    width: 50px;
    height: inherit;
}

/*
Logo agence + nom agence -----------------------------------------------------------------------------------
*/

.age-infos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
#agency-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid;
    color: #877cf3;
}
#age-name {
    font-size: 1.5rem;
    font-weight: bolder;
}