*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: "Lucida Grande", sans-serif;
    font-size: 1em;
    color: #0e2f85;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

@font-face {
    font-family: 'gloriahallelujah';
    src:  url('fonts/gloriahallelujah.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'lhandw';
    src:  url('fonts/LHANDW.TTF');
    font-weight: 400;
}

@font-face {
    font-family: 'Century-Gothic';
    src:  url('fonts/Century-Gothic.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'icomoon';
    src:  url('fonts/icomoon.ttf');
    font-weight: 400;
}


/***********
HEADER CONTAINER
*************
 */
.header-container{
    width: 100%;
    height: 133px;
    border-top: 12px solid #01a0c6;
    border-bottom: 6px solid #01a0c6;
    display: flex;
    align-items: center;
}

.header-content-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 85%;
}

.header-content-container-left{
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo-container, .title-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-container img{
    object-fit: cover;
}



.title-container img{
    object-fit: cover;
}

.contact-container-phone,
.contact-container-email{
    display: flex;
    align-items: center;
    color: #01a0c6;
    font-weight: bold;
}

.email a, .phone-number a{
    text-decoration: none;
    color: #01a0c6 !important;
}

.red-bar-container{
    background-image: url("../images/red-bar.svg");
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    width: 15%;
    height: 70px;
    min-width: 100px;
}

.bar-container{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 15px;
}

.lang{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 2px;
}

.lang .flag{
    width: 18px;
    height: 18px;
    background: grey;
    border-radius: 50%;
    border: 1px solid white;
    background-position: center !important;
    background-size: cover !important;
}

.lang .flag.fr{
    background: url("../images/drapeau-fr.png")
}

.lang .flag.en{
    background: url("../images/drapeau-en.png")
}

.icon-phone{
    height: 40px;
    width: 40px;
}

.icon-email{
    height: 40px;
    width: 40px;}

/**************
MAIN CONTAINER
 */

.main-container{
    flex: 1;
    background-image: url('../images/Picto_vagues.png'), url('../images/Picto_voile.png');
    /*Waves on first line, and voile on second*/
    background-position: 70% 0%, 28% 80%;
    background-repeat: no-repeat;
    background-size: 25%, 25%;
    background-color: #f0f9fc;
    padding-top: 60px;
    padding-bottom: 60px;
}


.login-container{
    max-width: 460px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 25px;
    margin: auto;
    box-shadow: 1px -20px 50px rgb(216 240 246);
}

.login-title-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
	padding-top: 20px;
}

.login-title-container h1{
    font-family: 'gloriahallelujah';
    text-transform: uppercase;
    font-size: 2.5em;
    color: #042f85;
}

.login-title-container p{
    display: flex;
    flex-direction: column;
    font-family: 'Century-Gothic';
    font-size: 1.6em;
    color: #01a0c6;
}

.login-title-container span{
    letter-spacing: 2px;
    font-weight: bold;
}

.username-container{
    margin-bottom: 35px;
}

.username-container,
.password-container{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login-input-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 35px;
}

.login-input-container a{
    display: flex;
    justify-content: flex-end;
    color: #01a0c6;
    padding-top: 5px;
    font-size: 0.9em;
}

.login-input-container label {
    font-size: 1.2em;
    margin-bottom: 3px;
    margin-bottom: 5px;
}

.login-input-container input{
    border: 2px solid #45B9D5;
    padding: 7px;
    border-radius: 5px;
    width: 100%;
}

.login-input-container input:focus{
    outline: none;
    border: 2px solid #01a0c6;
}

.login-btn-container{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    height: 50px;
	margin-top: 20px;
}

.login-btn-container button{
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #e07373;
    border-radius: 10px;
    font-weight: bold;
}

.login-btn-container span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn-container-text{
    height: 100%;
    width: 90%;
    font-size: 1.6em;
}

.login-btn-container-chevron{
    width: 10%;
    height: 100%;
    border-radius: 0 10px 10px 0;
    font-size: 1.6em;
    background-color: #d45858;
}

/*************
FOOTER
 */
.footer-container{
    width: 100%;
    height: auto;
    background-color: #01a0c6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 40px;
}

.footer-container a{
    text-decoration: none;
    color: white;
}


/****************
   Responsive
****************/
@media screen and (max-width: 1200px) {
    .header-container{
        height: auto;
    }

    .header-content-container{
        width: 100%;
        flex-direction: column;
    }

    .logo-container img{
        width: initial;
        height: initial;
    }

    .title-container img{
        width: 100%;
        height: initial;
    }

    .contact-container{
        display: flex;
        gap: 20px;
    }

/*    Main container*/
    .main-container{
        background-size: 35%, 35%;
    }


}

@media screen and (max-width: 860px) {
    .header-content-container-left{
        flex-direction: column;
        gap: 5px;
    }

    .header-content-container{
        gap: 10px;
    }

}

@media screen and (max-width:700px){
    .main-container{
        background-size: 45%, 45%;
        background-position: 100% 2%, 0% 80%;
    }
}

@media screen and (max-width: 550px){
    .main-container{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 460px){
    .login-title-container h1{
        font-size: 2.0em;
    }

    .login-title-container p {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 400px){
    .contact-container{
        flex-direction: column;
        gap: 0px;
    }

    .login-input-container{
        padding: 0 15px;
    }

    .login-title-container p {
        white-space: nowrap;
    }

    .login-btn-container{
        max-width: 280px;
    }

    .login-btn-container-text{
        font-size: 1.4em;
    }

    .login-btn-container-chevron{
        font-size: 1.4em;
    }

}


@media screen and (max-width: 340px){
    .logo-container img {
        width: 50%;
    }

    .login-title-container{
        padding: 0 15px;
    }

    .login-input-container  a {
        font-size: 0.8em;
    }
}


@media screen and (max-width: 320px){
    .login-btn-container{
        max-width: 240px;
    }

    .login-btn-container-text{
        font-size: 1.3em;
    }

    .login-btn-container-chevron{
        font-size: 1.3em;
    }

    .title-container img {
        width: 85%;
    }
}