.box-auth{
    position: fixed;
    width: 400px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    box-shadow: 0px 0px 12px #0002;
    background-color: white;
    border-radius: 15px;;
}

.box-head{
    padding-top: 16px;
    padding-bottom: 28px;
}


.box-footer{
    padding-top: 20px;
    padding-bottom: 12px;
}

.other-link-box{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 16px;
}

@media(max-width: 768px){
    .box-auth{
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        transform: none;
        position: unset;
        padding: 1.5rem;
        overflow-y: auto;
    }
    .box-head{
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .box-footer{
        padding-top: 24px;
        padding-bottom: 46px;
    }
}