/*-------------------IMPORTING FONTS---------------------*/

@font-face {
    font-family: "Avenir Next";
    src: url("../fonts/avenir-font/AvenirNextLTPro-Regular.otf")
        format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Avenir Next";
    src: url("../fonts/avenir-font/AvenirNextLTPro-Bold.otf") format("truetype");
    font-weight: 600;
}

/*------------------------------------------------------*/

*{
    box-sizing: border-box;
    font-family: "Avenir Next";
}

body{
    display : flex;
    flex-direction: row;
    align-items:initial;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: rgb(244, 246, 249);
    margin: 0;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20vh;
}

.containerBorder{
    display: flex;
    border: 1px solid rgb(216, 221, 230);
    border-radius: 6px;
    justify-content: center;
    width: 30vw;
    padding: 20px;
    background-color: #fff;
}

#logo{
    height: 150px;
    margin-bottom : 20px;
    margin-right: 50px
}

.fieldContainer label{
    color: rgb(84, 105, 141);
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.fieldContainer input{
    width: 25vw;
    margin-bottom: 30px;
    border: 1px solid rgb(216, 221, 230);
    color: #000;
    padding: 10px;
    border-radius: 4px;
}

.containerBorder button{
    width: 100%;
    height: 40px;
    background-color: #015de6;
    border: 1px solid rgb(84, 105, 141);
    border-radius: 4px;
    color: #fff;
    font-size: 1.1em;
}

.statut{
    position: fixed;
    display: flex;
    align-items: center;
    padding-left: 25px;
    height: 60px;
    width: calc(100vw - 30px);
    box-sizing: border-box;
    margin: 15px;
    border-radius: 15px;
    bottom: 0;
    left: 0;
    border: 2px solid transparent;
}

.statut.error{
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}