.wrapper {
    height: 100vh;
    width: 100%;
    background: url("../img/login/login_bg.png") no-repeat;
    background-size: cover;
    background-position: top right;
}

main.auth {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20vw;
}
@media screen and (max-width: 1200px) {
    main.auth {
        margin-top: 5vw;
    }
}
.box.auth {
    max-width: 650px;
    max-height: 550px;
    width: 100%;
    display: flex;
    padding: 65px 110px;
}

.box.large {
    max-width: 1080px;
}


.box.auth:before {
    content: '';
    background: url("../img/login/login_serch.png");
    background-repeat: no-repeat;
    background-position: center;
    max-height: 870px;
    max-width: 870px;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: contain;
}
.box.auth .form .form-title {
    margin-bottom: 30px;
}
.box.auth .form .form-btn {
    margin-top: 30px;
    margin-left: auto;
}
.box.auth .form .form-btn.row {
    margin-top: 0px;
    margin-left: 15px;
}

@media screen and (max-width: 680px){
    .box.auth {
        padding: 30px;
    }
    .box.auth .form .form-btn {
        margin-top: 0;
    }
    .box.auth.large .form .form-row.row {
        flex-direction: column;
    }
    .box.auth.large .form .form-row.row .form-btn.row{
        margin: 30px 0 0 auto;
    }
}
