.auth {
    padding: 25px;
    /* justify-content: space-between;
    align-items: center; */
    margin: 10px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}
@media screen and (max-width: 990px) {
    .auth{
        grid-template-columns: 1fr;
    }
}

main .image {
    background: url('../images/thumbs/student.jpg') center/cover no-repeat;
    width: 100%;
    min-height: 80vh;
    height: 100%;
    border-radius: 29px;
    position: relative;
    display: flex;
    flex-shrink: 1;
    transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 990px) {
    main .image{
        display: none!important;
    }
}
main .image .texts {
    position: absolute;
    height: 99px;
    bottom: 50px;
    left: 0;
    padding: 0 25px;
    opacity: 0px;
    color: #49BBBD;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #49BBBD30;
    border-right: 10px solid #49BBBD;
    backdrop-filter: blur(9.399999618530273px);
}
main .image .texts h2{
    margin: 0;
}
main .image .texts p{
    color: #49BBBD;
}

main .form {
    width: 70%;
    height: 100%;
    padding: 75px 0;
}

@media screen and (max-width: 768px) {
    main .form{
        width: 100%;
    }
}
main .form .form_group label{
    color: black;
}
main .form p{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: black;
}
main .form .toggler{
    background-color: rgba(73, 187, 189, 0.6);
    padding: 15px 10px;
    border-radius: 33px;
    margin: 20px 0;
}
main .form .toggler span{
    padding: 10px 30px;
    border-radius: 33px;
    font-weight: 500;
    color: white;
    cursor: pointer;
}
main .form .toggler span.active{
    background-color: var(--primary);
}
main .form h6{
    color: #5B5B5B;
    margin: 10px 0; 
}
main .form p.sign{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    color: black;
}
main .form p.sign a{
    color: var(--primary);
}
.btn{
    display: flex;
    justify-content: center!important;
    align-items: flex-end!important;
    margin-bottom: 10px;
}
.btn button{
    margin-left: 0;
}
.signup{
    margin-top: 20px;
}
img#visibility-icon{
    position: absolute;
    top: calc(50% - 10px);
    transform: translateY(calc(50% - 8px));
    right: 25px;
    cursor: pointer;
}