.auth-section{
    margin-top: 120px;
    width: 100%;
    min-height: 60vh;
}
.auth-section .row{
    display: flex;
    justify-content: center;
}
.auth-type{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 25px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.auth-type-student{
    background-color: #7255D9;
    width: 50%;
    height: 500px;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
    padding: 35px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}
.auth-type-student .btn{
    font-weight: 700;
    color: #7255D9;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-type-student p {
    font-size: 16px;
}
.auth-type-student p a{
    color: white;
    text-decoration: underline;
    font-weight: 700;
}
.auth-type-img{
    max-width: 100%;
}
.auth-type-teacher{
    background-color: #fff;
    width: 50%;
    height: 500px;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}
.auth-type-teacher .btn{
    font-weight: 700;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-type-teacher p {
    font-size: 16px;
}
.auth-type-teacher p a{
    color: #7255D9;
    text-decoration: underline;
    font-weight: 700;
}
.auth-block{
    padding: 30px;
    border-radius: 25px;
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.auth-block h4{
    text-align: center;
}
.auth-block .auth-block-img{
    text-align: center;
    margin-bottom: 15px;
}
.auth-block .auth-block-img img{
    max-width: 75px;
}
.auth-form .form-control{
    width: 100%;
    height: 45px;
    padding-left: 50px;
    border-radius: 50px;
    border: 1px solid #7255D9;
}
.auth-form button{
    width: 100%;
    height: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.auth-form-actions{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.auth-form-actions .form-check{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.auth-form-actions .form-check-input{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-top: 0;
    margin-right: 5px;
    border: 1px solid #7255D9;
}
.auth-form-actions .form-check-input:checked{
    background-color: #7255D9;
}
.auth-form-actions label a{
    font-weight: 500;
}
.auth-form-forgot a{
    color: #363636;
    border-bottom: 1px solid transparent;
}
.auth-form-forgot a:hover{
    border-bottom: 1px solid #636363;
}
.auth-form-input{
    position: relative;
}
.input-icon{
    position: absolute;
    top: 14px;
    left: 20px;
    width: 25px;
}
.password-icon{
    top: 10px;
}
.person-icon{
    top: 10px;
    width: 22px;
}
.phone-icon{
    top: 10px;
    width: 24px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
