.login-container{
    position: fixed;
    width: 400px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.2rem;
    box-shadow: 0px 0px 12px #0002;
}

.login-head{
    padding-top: 16px;
    padding-bottom: 28px;
}


.login-footer{
    padding-top: 24px;
    padding-bottom: 12px;
}

.other-link-login{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media(max-width: 768px){
    .login-container{
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        transform: none;
        position: unset;
        padding: 1.5rem;
        overflow-y: scroll;
    }
    .login-head{
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .login-footer{
        padding-top: 24px;
        padding-bottom: 32px;
    }
}


.btn-outline-google{
    border: 1px solid #000000;
    color: #000000;
}
.btn-outline-google:hover{
    border: 1px solid #DB4437;
    background-color: #DB4437;
    color: #ffffff;
}