/* Général */
body {
    font-family: 'Montserrat', sans-serif;
    transition: 3s;
}
.error { color: red; }
.center-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

/* Boutons */
#btnLogin {
    background-color: #e1e6ea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#btnLogin:hover, #btnLogin:hover .logo-office { background-color: #d3d9df; }
.langSelectContainer {
    display: flex;
    align-self: start;
    position: absolute;
    top:12px;
}
#langSelect { border: 1.5px solid lightgray !important; }

/* Logos */
#officeLogo {
    height: 25%;
    width: 25%;
    margin-right: 5%;
}

/* Formulaire */
#loginContainer {
    border: 1px solid #CCD1D1;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 5px 20px 0 rgba(0, 0, 0, 0.19);
    height: 600px;
    width: 1200px;
}
#formContainer {
    height: 100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
#welcomeContainer {
    background-color: black;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #fff;
    text-align: center;
    height: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
}
#welcomeMessage { margin: 0; font-weight: bold; }
#companyName {
    font-family: 'ff-netto-web', sans-serif;
    font-weight: bold;
    font-size: 3em;
    margin: 0;
}