body.login {
    display: flex;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
#login h1,
#login .wp-login-logo {
    display: none;
}
#login {
    padding: 2rem 1rem;
    background-color: white;
}
#loginform {
    margin: 0;
    padding: 0 1rem;
    border: none;
    box-shadow: none;
}
.login label {
    color: #72777c;
}
.login p input[type="submit"] {
    border-radius: 5px;
    background: #006bc5;
    border: 3px solid #006bc5;
    margin: 7px 0 7px;
    height: 46px;
    font: normal 15px "Roboto", sans-serif;
    font-weight: 500;
    color: #fff;
    width: 100%;
    transition: 250ms ease all;
}
.login p input[type="submit"]:hover {
    background: white;
    border: 3px solid #006bc5;
    color: #006bc5;
}
#login #backtoblog {
    margin-bottom: 0 !important;
}
.login form .forgetmenot label {
    font-size: 12px;
    line-height: 19px;
}
body.login .language-switcher { 
    display: none;
}
body.login .footer-wrapper {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #efefef;
}
body.login .footer-cont {
    text-align: center;
    vertical-align: bottom;
}
body.login .copyRight {
    padding: 12px 170px;
    color: #000000;
}

body.login a.wp-login-lost-password {
    font-weight:bold;
    text-decoration: underline !important;
    border: 3px solid red;
    background: red;
    padding: 5px;
    border-radius: 5px;
    color: #FFF !important;
    margin-bottom: 10px;
}

body.login .wp-login-lost-password a:hover{
    text-decoration: none !important;
}

@media (max-width: 767px) {
    body.login {
        background-image: none;
        background-color: white;
        display: flex;
        justify-content: center;
    }
    body.login #login {
        margin: 0 0.25rem;
        border-radius: 0;
        box-shadow: none
    }
    body.login .footer-wrapper {
        display: none;
    }
}