.login_row {
    background-color: white;
    width: 100%;
    margin: 70px auto;
    box-shadow: var(--box-shadow);
}

/*col 1*/
#login_col_1 {
    position: relative;
    padding: 12px 12px;
}

/*toggle*/
.login_row_toggle {
    position: absolute;
    top: -50px;
    width: 100%;
    height: 50px;
    background-color: var(--blue-dark);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.login_row_toggle div {
    display: flex;
    color:white;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s;
}

.login_row_toggle div.active {
    background-color: white;
    color:black;
    box-shadow: 0 0 15px black;
    border-radius: 10px 10px 0 0;
    border: 0.5px solid var(--blue-dark);
    border-bottom: 0;
    cursor: auto;
    z-index: 1;
}

.login_row_toggle div p {
    font-size:inherit;
    font-weight: bold;
}

/*login form*/
#div_login_form {
}

#login_form {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

#login_form div {
    margin: 5px 5px 20px 5px;
}

#login_form div:last-child {
    margin: auto;
    display: block;
}

#btn_login_1 {
    padding: 10px 60px;
    margin: 30px auto;
}

#btn_login_2 {
    padding: 10px 60px;
    margin-bottom: 50px;
}

#otp_validator_input_container {
    display: flex;
    justify-content: center;
}

#otp_validator_input_container .otp_validator_input {
    width: 35px;
    height: 35px;
    margin: 10px;
    -moz-appearance: textfield;
    text-align: center;
    border: 0;
    border-bottom: 2px solid var(--blue-dark);
}

#otp_validator_input_container .otp_validator_input:focus {
    outline: none;
}

#otp_validator_input_container input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

/*col 2*/
#login_col_2 {
    position: relative;
    height: 70vh;
    background-color: var(--blue-dark);
    margin: 0;
}

#login_col_2 div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.6s;
    transform-origin: bottom;
    margin: 15px;
}

#login_col_2 div.active {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
}

#login_col_2 p {
    color: white;
    margin: 0 0 15px 0;
}

#login_col_2 img {
    height: 400px;
    width: 100%;
}

@media (max-width: 768px) {
    .login_row {
        width: 85%;
        margin: 100px auto;
    }

    #login_col_2 {
        height: 50vh;
    }

    #login_col_2 img {
        height: 60%;
    }

}
