html,
body {
    height: 100%
}

body {
    position: relative;
    /* background: #9B9B9B; */
    background: #583C30;
    background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%)
}

div.login_form {
    position: absolute;
    width: 40%;
    max-width: 500px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    padding: 30px
}

@media (max-width: 767px) {
    div.login_form {
        width: 90%;
        overflow-y: auto;
        max-height: 90vh
    }
}

div.login_form div.checkbox {
    text-align: center
}

div.login_form .btn_login {
    color: white;
    font-size: 1.125rem;
    background-color: #D61518;
    border: 1px solid #D61518;
    width: 100%
}

div.login_form div.logo_center {
    text-align: center
}
