body {
    background-color: #F6F5F7;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_content {
    -webkit-box-shadow: 5px 5px 50px -14px rgba(0, 0, 0, 0.24);
    box-shadow: 5px 5px 50px -14px rgba(0, 0, 0, 0.24);
    height: 1000px;
    width: 1700px;
    display: flex;
    background-image: url("../images/Bg/bois_gris.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all .3s linear;
    max-height: 86vh;
    min-height: 580px;
}

.login_bg {
    text-align: center;
    width: 1000px;
    height: 100%;
    z-index: 100;
}

.login_bg img {
    height: 100%;
    z-index: 100;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 700px;
}

.login-logo {
    width: 350px;
    text-align: center;
    margin: 50px 0 20px 0;
}

.login-form {
    position: relative;
    display: flex;
    width: 550px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    color: #000;
    background: #ffffff;
    border-radius: 5px;
}

.login_form_inputs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    font-size: 35px;
    color: #555555;
    line-height: 1.2;
    font-weight: normal;
    text-align: center;
}

label {
    width: 440px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

input[type=text], input[type=password] {
    background-color: #e8e8e8;
    border: 2px solid #e6e6e6;
    border-radius: 10px;
    color: #333333;
    line-height: 1.2;
    display: block;
    width: 400px;
    height: 40px;
    padding: 0 10px;
    transition: all ease-in-out 0.3s;
    font-size: 13px;
}

input[type=text]:focus, input[type=password]:focus {
    background-color: transparent;
    border: 2px solid #000;
}

.btn {
    height: 45px;
    width: 398px;
}

.lang {
    position: absolute;
    bottom: 35px;
    right: 40px;
}
.error_container{
    width: 400px;
}

/* Responsive */

@media screen and (max-width: 2000px) {
    .login_content {
        height: 700px;
        width: 1200px;
        max-width: 90vw;
    }
}

@media screen and (max-width: 1600px) {
    .login_content {
        height: 900px;
        width: 1503px;
    }

    input[type=text], input[type=password] {
        height: 41px;
    }

    .btn {
        height: 45px;
    }
}

@media screen and (max-width: 1350px) {
    .login_content {
        max-width: 90vw;
    }

    .login_bg img {
        height: 80%;
    }
    .login_bg{
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    input[type=text], input[type=password] {
        height: 41px;
    }
}

@media screen and (max-width: 1200px) {

    .login_bg{
        width: calc(100% - 400px);
    }

    .login {
        width: 400px;
    }

    .login-logo {
        width: 250px;
    }
    .error_container{
        width: 250px;
    }
    input[type=text], input[type=password] {
        height: 35px;
        width: 250px;
        font-size: 14px;
        padding: 0 10px;
    }

    .btn {
        width: 275px;
    }
}

@media screen and (max-width: 1000px) {
    .login {
        width: 100%;
        background: #ffffff80;
    }
    .login_bg {
        display: none;
    }
    .login-form{
         background: transparent;
    }
}

@media screen and (max-width: 600px) {
    .login_content {
        max-width: 95vw;
    }
    .login_form_inputs{
        width: calc(100% - 20px);
        text-align: center;
    }
    input[type=text], input[type=password]{
        width: calc(100% - 30px);
    }
    .btn{
        height: 40px;
        width: 240px;
    }
    .login-logo {
        width: 220px;
    }
}

/* Heigt */

@media screen and (max-height: 1000px) {
    .login-logo {
        width: 290px;
    }
}