.login { 
    background: #F3F4F7;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.login .form {
    background: #FFF;
    border: 1px solid #D4D9E3;
    border-radius: 5px;
    left: 50%;
    padding: 25px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
}

.login .logo {
    background-image: url('/static/images/logo.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 65px;
    margin: 10px 0 15px 0;
    width: auto;
}

.login .error {
    color: #FF5F40;
    font-size: 14px;
    margin: -5px 0 0 0;
}

.login .forgot {
    margin: 2px 0 0 0;
    text-align: right;
}

.login .forgot a {
    color: #282828;
    font-size: 0.8rem;
    text-align: right;
}

.login .forgot a:hover {
    text-decoration: underline;
}

.login .buttons {
    display: flex;
}

.login .btn-orange {
    margin: 20px 0 0 5px;
}

.login .btn-blue {
    margin: 20px 5px 0 0;
}

.login .intro {
    margin: 0 0 15px 0;
}

.login .btn-orange.reset {
    margin: 20px 0 0 0;
}

@media screen and (max-width: 350px) {
    .login {
        padding: 18px;
        height: calc(100vh - 36px);
        width: calc(100% - 36px);
    }

    .login .form {
        left: 0;
        padding: 18px;
        position: relative;
        top: 0;
        transform: translate(0, 0);
        width: calc(100% - 36px);
    } 
}