html{width: 100%;}
body.login{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}
.login-holder-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: #fff url(bg.jpg) no-repeat 0px 0px;
    background-size: cover;
    padding: 20px;
}
.login-holder{
    max-width: 600px;
    width: 100%;
    margin-block: 1em;
    background: #fff;
    padding: 45px 35px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
}
body.login .login-container {
    margin-top: 0;
    padding: 0;
    position: static;
    z-index: 10;
}
body.login .login-button {
    padding: 12px 38px;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 2px;
    background: #d92027;
    color: white;
    border: none;
    outline: none;
    display: table;
    cursor: pointer;
    margin: 25px auto 0;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    border-radius: 10px;
    float: none;
    opacity: 1;
}
body.login .login-button:hover {
    background: #36393b;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
.logo-holder {
    max-width: 135px;
    margin: 0 auto 20px;
}
.login-container h2{
    color: #d92027;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: none;
    text-align: center;
}
.login-container .remember-me-text {
    font-weight: 400;
    color: #000;
    opacity: 1;
}
@media (max-width: 767px) {
   .login-holder {
        padding: 35px 25px;
    }
    .login-container h2 {
        font-size: 24px;
    }
}