@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
body{
    height: 100vh;
}

.home{
    width: 100%;
    height: 100%;
    display: flex;
}
.home .form-content{
    height: 100%;
    width: 50%;
    padding: 40px 80px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 13px 0px 27px -10px rgb(0 0 0 / 30%);
    transition: .2s ease;
    z-index: 99999;
}

.form-content .login .logo{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.form-content .login .logo p{
    margin :0 0 0 10px;
    font-weight: bold;
    width: auto;
}

.form-content .login .title h1{
    margin: 0 0 10px 0;
}

.form-content .login .title small{
    color: #6A6A6A;
}

.form-content .social-auth{
    display: flex;
    margin:30px 0;
}

.form-content .social-auth .auth{
    padding: 7px 30px;
    min-width: 45%;
    background-color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: .3s ease;
    cursor: pointer;
}

.form-content .social-auth .auth:hover{
    transform: scale(1.02);
}

.form-content .social-auth .auth img{
    margin-right: 10px;
}

.form-content .social-auth .auth p{
    color: #6A6A6A;
    font-weight: bold;
    font-size: 15px;
}

.form-content .social-auth .auth:last-child{
    margin-left: 30px;
}

.login form{
    margin-top: 10px;
}

.login form #error-msg{
    color: red;
    font-size: 14px;
    transition: .5s ease;
}
.login form p{
    margin:20px 0;
    display: flex;
    flex-direction: column;
    gap:5px;
}

.login form label{
    font-weight: bold;
}

.login form input{
    border:none;
    border-bottom: .7px solid rgba(0,0,0,.5);
    outline: none;
    padding: 5px;
    transition: .2s ease;
}

.login form input:focus{
    border-bottom: .7px solid #097dea;
    box-shadow:0 1px 2px -1px #097dea;
}

.login form button{
    width: 100%;
    border:none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    background: radial-gradient(50% 4087.59% at 50% 50%, #097dea 0%, #097dea40.63%, #097dea.98%, #097dea 99.48%);
    border-radius: 5px;
    transition: .2s ease;
}
.login form button:hover{
    transform: scale(1.03);
}

.login form button span{
    transition: .5s ease;
}
#loading{
    position: relative;
    width: 10px;
    height: 10px;
    display: none;
    border:4px solid white;
    margin:0 auto;
    border-radius: 50%;
    box-sizing: content-box;
    animation: spin 1.5s linear infinite;
}

#loading::before{
    content: '';
    position: absolute;
    top: 0px;
    border: 0.1px solid white;
    right: -6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #097dea;
}

@keyframes spin {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}
.helpers{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.helpers a{
    text-decoration: none;
    color: #6A6A6A;
    font-weight: bold;
    font-size: 14px;
    transition: .2s ease;
}

.helpers a:hover{
    color: #097dea;
}

.home .display-image{
    position: relative;
    background: url('/static/img/man.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 50%;
    height: 100%;
    transition: .2s ease;
    overflow: hidden;
}

.home .display-image::before{
    content:'';
    display: none;
    position: absolute;
    margin: 0 auto;
    top: -15%;
    left:3.2%;
    width: 90%;
    height: 130%;
    border:15px solid white;
}

#sa{
    position: absolute;
    display: none;
    z-index: -9999999999999999;
}

#sign_up{

}

#sign_up .helptext{
    display: none;
}
@media only screen and (max-width:870px) {
    .home .form-content{
        width: 60%;
    }

    .home .display-image{
        width: 40%;
    }
}

@media only screen and (max-width:700px) {
    .home .form-content{
        width: 70%;
    }

    .home .display-image{
        width: 30%;
    }
}

@media only screen and (max-width:570px) {
    .home .form-content{
        width: 100%;
        padding: 40px 31px;
    }

    .home .display-image{
        width: 0%;
    }
}