.background_login{
    min-height: 100vh;
}

.background_relative{
    max-width: 460px;
    width: 90%;
    margin: 20px auto;
}

.box_red_login_top{
    position: absolute;
    left: -90px;
    top: -90px;
}

.box_red_login_bottom{
    position: absolute;
    bottom: -90px;
    right: -90px;
}

.box_login{
    padding: 40px 24px;
    width: 100%;
    z-index: 99;
    margin-left: -90px;
    position: relative;
}

.box_login img.logo{
    width: 80px;
    height: 80px;
}

.label_login{
    margin-top: 24px;
}

.label_login label{
    width: 100%;
    color: var(--color-white-default);
}

.label_login input{
    width: 100%;
    padding: 14px;
    border: 1px solid var(--color-white-default);
    background-color: transparent;
    margin-top: 4px;
    border-radius: var(--border-radius-default);
    color: var(--color-white-default);
    font-size: 18px;
}

.label_login input:focus{
    outline: 0;
}

.label_login .input_password{
    width: 100%;
    border: 1px solid var(--color-white-default);
    background-color: transparent;
    margin-top: 4px;
    padding: 0 5px;
    border-radius: var(--border-radius-default);
    color: var(--color-white-default);
}

.label_login .input_password input{
    width: 100%;
    background-color: transparent;
    border: 0;
    margin-top: 0px;
    color: var(--color-white-default);
}

.label_login .input_password img{
    width: 30px;
    cursor: pointer;
}

.box_login button{
    width: 100%;
    padding: 10px;
    border-radius: var(--border-radius-default);
    background-color: var(--color-red-dark);
    color: var(--color-white-default);
    border: 0;
    margin-top: 24px;
    cursor: pointer;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

@media screen and (max-width: 1024px){
    .box_red_login_top{
        display: none;
    }

    .box_red_login_bottom{
        display: none;
    }
}