html{
    height: 100%;
}

body{
    margin:0;
    height: 100%;
    font-family: roboto;
}

.form_bg{
    height: 100%;
    background-color: #fff!important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:0!important;
    font-family: roboto;
}

.esk_logo{
    width:120px;
}

#form_wrapper{
    width: 90%;
    background-color: #fff;
    margin: 0 0 0 0;
    padding: 0px 20px 15px;
    border-radius: 3px;
}

#form_wrapper form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.input_row{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    position: relative;
}

.input_row h2{
    color:#0098aa;
}

.input_row label{
    color: #8996a0;
    margin-left: 5px;
    margin-bottom: 3px;
    font-weight: inherit;
    font-size: 1.2em;
    text-align: left;
    padding: 0;
}

.input_row input, .input_row button, .input_row select{
    border-radius: 3px;
    height: 40px;
    padding:0;
    font-family: roboto;
    font-size: 20px;
}

.input_row input[type="text"],.input_row input[type="password"]{
    border: solid 1px #dfe5e6;
}

.input_row input[type="text"]:focus,.input_row input[type="password"]:focus{
    border: solid 1px #0098aa;
    outline: none;
}

.input_row input[type="text"], .input_row select{
    padding-left: 37px;
    color: #51626f;
}
.login_input_picto{
    position: absolute;
    width: 30px;
    top: 32px;
    left: 5px;
    opacity: 0.8;
}

.input_row input[type="password"]{
    padding-left: 40px;
    color: #51626f;
}

.input_row button[type="submit"]{
    color:#fff;
    margin-top:10px;
    margin-bottom:5px;
    border:none;
    background-color:#0098aa;
}

.input_row button[type="submit"]:hover{
    opacity: 0.8;
    cursor:pointer;
}

#checkbox_row{
    flex-direction: row;
    align-items: center;
}

#checkbox_row label{
    margin-left:0;
}

#checkbox_row [type="checkbox"]:not(:checked),
#checkbox_row [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

#checkbox_row [type="checkbox"]:not(:checked) + label,
#checkbox_row [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

#checkbox_row [type="checkbox"]:not(:checked) + label:before,
#checkbox_row [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #8996a0;
    background-color: transparent;
    border-radius: 2px;
}

#checkbox_row [type="checkbox"]:not(:checked) + label:after,
#checkbox_row [type="checkbox"]:checked + label:after {
    content: '✓';
    position: absolute;
    top: -8px;
    left: 1px;
    font-size: 22px;
    color: #fff;
    transition: all .1s;
}

#checkbox_row [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

#checkbox_row [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
    color:#008998!important;
}

.login_bottom_links{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 12px;
}

.login_bottom_links a{
    text-decoration:none;
    color:#8996a0;
}

.login_bottom_links a:hover{
    color:#0098aa;
    cursor:pointer;
}

#login_footer{
    margin-top: auto;
}

#login_footer p{
    margin:5px 0;
    color:#fff;
}

input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px white inset!important;
    -webkit-text-fill-color: #51626f;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow:0 0 0 50px white inset!important;
    -webkit-text-fill-color: #51626f;
} 

.newsletter_ty{
    color: #0098aa;
    text-align: center;
    font-size: 30px;
}

.gdpr_investors{
    font-size: 10px;
    color: #a5aeb6;
    font-style: italic;
}