body {
    background: url('../../images/login/bg-login.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-repeat: no-repeat;
}

.box-content-login {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    height: 100vh;
    max-width: 1020px;
    margin: 0 auto;
    width: 100%;
}

.box-img-login {
    width: 50%;
}

.box-login {
    width: 50%;
    background: #071D491C;
    min-height: 393px;
    height: fit-content;
    border-radius: 0 16px 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-label {
    font-size: 25px;
    font-weight: 500;
    color: var(--borg-white);
}

.box-form-login {
    width: 100%;
}

.box-input-login {
    max-width: 90%;
    margin: 0 auto;
}

.form-control {
    height: 54px;
    border-left: 7px solid var(--borg-secondary);
}

.box-btn-login {
    max-width: 90%;
    margin: 0 auto;
    background: var(--borg-secondary);
    height: 47px;
    border-radius: 50px;
    border: 2px solid var(--borg-secondary);
    font-size: 25px;
    font-weight: 500;
}

.vinicin {
    position: absolute;
}

@media screen and (max-width: 768px) {
    .box-img-login {
        display: none;
    }

    .box-login {
        width: 100%;
        border-radius: 16px;
    }
}