.login_subcon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.login_con_left {
    flex: 0 0 33%;
    max-width: 33%;
    display: flex;
    object-fit: cover;
    height: 100vh;
}


.login_con_right {
    flex: 0 0 67%;
    max-width: 67%;
    height: 100vh;
    /* overflow-x: hidden;
    overflow-y: auto; */

}

.login_con_right {
    display: flex;
    justify-content: center;
    align-items: center;
}


.login_con_right_con {
    width: 400px;
}

.login_con_right_con_title1 {
    font-size: 30px;
    font-weight: 900;
    color: var(--primary-black);
    letter-spacing: 1px;
}

.login_con_right_con_title2 {
    font-size: 14px;
    margin-top: 2px;
    line-height: 22px;
    
}

.login_con_right_con_logo {
    margin-bottom: 30px;
}

.rem_log {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rem_log_left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.rem_log {
    margin-top: 10px;
}

.rem_log label {
    cursor: pointer;
}

.log_signup_ac {
    /* border-top: 1px dashed #dbcdbf; */
    /* display: flex; */
    justify-content: space-between;
    /* align-items: center; */
    margin-top: 20px;
}

.log_signup_ac a {
    font-weight: 700;
    color: var(--primary-black);
    margin-left: 5px;
}

.rem_log_button {
    margin-top: 20px;
}

.log_signup_ac_top {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin: 20px 0px;
}

.log_signup_ac_top a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0px;
    font-size: 20px;
}

.log_signup_ac_top a img {
    margin-right: 10px;
}

.log_border {
    position: relative;
    width: 100%;
    border: 1px dashed #f5f5f5;
    margin-top: 30px;
    margin-bottom: 30px;
}

.log_border::before {
    content: "or";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    background: #fff;
    height: 30px;
    width: 30px;
    text-align: center;
}

.login_con_left {
    position: relative;
    z-index: 1;
}

.login_con_left_ab {
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    z-index: 3;

}

.login_con_left_ab2 {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
}

.login_con_left_ab2_title2{
    font-size: 25px;
    color: var(--primary-white);
    font-weight: 800;
}
.login_con_left_ab2_title1{
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-white);
    letter-spacing: 7px;
    margin-bottom: 20px;

}

.login_con_left_ab3{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.2);
    z-index: 2;
}
.ap-otp-inputs{
    display: flex;
    justify-content: space-between;
}
.ap-otp-input{
    border: 1px solid #e8e8e8;
    background: transparent;
    width: 40px;
    height: 40px;
    margin: 4px;
    text-align: center;
    font-size: 25px;
    font-family: var(--primary-text-font);
}

.ap-otp-input:focus{
    outline: none !important;
    border: 1px solid #000;
    transition: 0.12s ease-in;
}

.otp_title{
    margin-bottom: 20px;
}

.otp_ac{
    margin-bottom: 30px;
}


.btnlogin button{
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .02px;
    color: #ffffff;
    background-color: #F3D029;
    color: #000;
    padding: 5px 10px;
    border: none;
    padding: 15px 43px;
    z-index: 1;
    position: relative;
    font-family: var(--primary-text-font);
}

.btnlogin button::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000;
    width: 0%;
    height: 100%;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: -1;
}
.btnlogin button:hover{
    color: #F3D029;
}
.btnlogin button:hover::after{
 width:100%;
}

.error{
    color: #fd1748 !important;
    font-size: 13px !important;
}