html {
    overflow-y: auto;
}

* {
    box-shadow: none !important;
    outline: none;
}

body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: auto;
    overflow: hidden;
}

#blockLeft {
    background: #FFFFFF;
    position: relative;
}

#blockRight {
    background-color: #FFFFFF;
    height: 100vh;
    position: relative;
}

#blockRight Img {
    height: 100%;
    background-position: center;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.loginWrapper {
    width: auto;
    height: 95%;
}

.loginBox {
    max-width: 398px;
    width: 100%;
}

.loginBox .text-input {
    border: 0;
    border-bottom: 1px solid #CCD0D3;
    width: 100%;
    min-width: 246px;
}

#loginForm button.btn {
    width: 100%;
}

.btn[disabled] {
    background: #D7DDE0;
    color: #A0A4A6;
}

.footer {
    position: absolute;
    border: none;
    bottom: 0;
    color: #262E3C;
    text-align: center;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    body {
        grid-template-columns: 1fr;
    }

    #blockRight {
        display: none;
    }
}