/* loader design */
body,
.login_con_right,
.login_con {
    background: #fff !important;
}

.loader {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #ECF0F1;
    left: -100px;
    box-sizing: border-box;
    animation: shadowRolling 2s linear infinite;
}

@keyframes shadowRolling {
    0% {
        box-shadow: 0px 0 rgba(236, 240, 241, 0), 0px 0 rgba(236, 240, 241, 0), 0px 0 rgba(236, 240, 241, 0), 0px 0 rgba(236, 240, 241, 0);
    }

    12% {
        box-shadow: 100px 0 #ECF0F1, 0px 0 rgba(236, 240, 241, 0), 0px 0 rgba(236, 240, 241, 0), 0px 0 rgba(236, 240, 241, 0);
    }

    25% {
        box-shadow: 110px 0 #ECF0F1, 100px 0 #ECF0F1, 0px 0 rgba(236, 240, 241, 0), 0px 0 rgba(236, 240, 241, 0);
    }

    36% {
        box-shadow: 120px 0 #ECF0F1, 110px 0 #ECF0F1, 100px 0 #ECF0F1, 0px 0 rgba(236, 240, 241, 0);
    }

    50% {
        box-shadow: 130px 0 #ECF0F1, 120px 0 #ECF0F1, 110px 0 #ECF0F1, 100px 0 #ECF0F1;
    }

    62% {
        box-shadow: 200px 0 rgba(236, 240, 241, 0), 130px 0 #ECF0F1, 120px 0 #ECF0F1, 110px 0 #ECF0F1;
    }

    75% {
        box-shadow: 200px 0 rgba(236, 240, 241, 0), 200px 0 rgba(236, 240, 241, 0), 130px 0 #ECF0F1, 120px 0 #ECF0F1;
    }

    87% {
        box-shadow: 200px 0 rgba(236, 240, 241, 0), 200px 0 rgba(236, 240, 241, 0), 200px 0 rgba(236, 240, 241, 0), 130px 0 #ECF0F1;
    }

    100% {
        box-shadow: 200px 0 rgba(236, 240, 241, 0), 200px 0 rgba(236, 240, 241, 0), 200px 0 rgba(236, 240, 241, 0), 200px 0 rgba(236, 240, 241, 0);
    }
}

/* checkbox design  */

/* From Uiverse.io by SelfMadeSystem */
.checkbox_con {
    cursor: pointer;
}

.checkbox_con input {
    display: none;
}

.checkbox_con svg {
    overflow: visible;
}

.path {
    fill: none;
    stroke: #743B32;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
    stroke-dasharray: 241 9999999;
    stroke-dashoffset: 0;
}

.checkbox_con input:checked~svg .path {
    stroke-dasharray: 70.5096664428711 9999999;
    stroke-dashoffset: -262.2723388671875;
}



/* banners */
.loader {
    display: none;
}

.buttontext {
    display: block;
}



.loginpage {
    background: url('../img/login/1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.signuppage {
    background: url('../img/login/2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.otp {
    background: url('../img/login/3.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.forgotpge {
    background: url('../img/login/4.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.passwordresetpage {
    background: url('../img/login/5.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


p {
    padding: 0px;
    margin: 0px;
}



/* login page design  */


.login_con {
    height: 100vh;
    width: 100vw;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_con_left {
    flex: 0 0 30%;
    max-width: 30%;
    height: 100%;
    position: relative;
}

.login_con_right {
    flex: 0 0 70%;
    max-width: 70%;
    background-color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.login_right_con {
    width: 500px;
}

.login_title {
    font-size: 25px;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 2px;
}

.login_matter {
    font-size: 16px;
    font-weight: 500;
    font-family: "Lato", serif;
}

.gmail_login {
    margin: 20px 0px;
}

.gmail_login a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

}

.gmail_login span {
    color: #444444;
    margin-left: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: underline;
    font-family: "Lato", serif;
}

.loginbutton {
    height: 40px;
    width: 100%;
    border: none;
    outline: 0;
    background: #743B32;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing:2px !important;
}

.loginbutton:hover {
    background: #743B32;
    transition: background 0.3s ease-in-out;

}

.login_input {
    position: relative;
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
}

.login_input input[type="text"],
.login_input input[type="email"],
.login_input input[type="password"] {
    height: 40px;
    width: 100%;
    padding: 0px 10px;
    outline: 0;
    border: none;
    background: transparent;
    border: 1px solid #c1af95;
    font-size: 14px;
    font-weight: 500;
    font-family: "Lato", serif;
}

.remember_forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember,
.forgot {
    flex: 0 0 49%;
    max-width: 49%;
}

.password_hide {
    height: 40px;
    width: 40px;
    background: transparent;
    position: absolute;
    top: 0px;
    right: 0px;
    outline: 0;
    border: none;
    font-size: 20px;
    color: #743B32;
}

.remember_forgot {
    margin-top: 10px;
}

.forgot {
    text-align: right;
}
.register{
    font-family: "Lato", serif;
}
.forgot a {
    color: #002EE9;
    font-weight: 600;
    font-family: "Lato", serif;
}

.remember {
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.remember span {
    margin-left: 10px;
    font-weight: 600;
}

.register {
    font-size: 14px;
    font-weight: 700;
}

.notification {
    font-weight: 600;
    margin-top: 10px;
    width: 100%;
    padding: 5px 15px;
    display: none;
    border-radius: 5px;
}

.notification[data-type="success"] {
    background: #DFF0D8;
    color: #2C8840;
}

.notification[data-type="error"] {
    background: #F3D8DA;
    color: #6A2326;

}

.button {
    margin-top: 20px;
}

.loginbars {
    height: 1px;
    width: 100%;
    position: relative;
    border: 1px dashed #c1af95;
    margin: 25px 0px;
}

.loginbars::after {
    position: absolute;
    content: "or";
    left: 50%;
    transform: translateX(-50%);
    top: -22px;
    background: #fff;
    padding: 0px;
    margin: 0px;
    padding: 10px;
    color: #aaa;
}

.login_con_left_bottom {
    position: absolute;
    left: 0px;
    bottom: 0px;
    color: #fff;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.7);
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
}








/* otp verification */

.otp-form {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}


/* OTP input styles */
.otp-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.otp-input:focus {
    border-color: #2C8840;
}

#verificationCode {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

#verificationCode:focus {
    border-color: #2C8840;
}

.login_input_otp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}


label.error {
    color: #f00;
}

.resend_con {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.resend_con button {
    padding: 0px;
    margin: 0px;
    border: none;
    outline: 0;
    color: #002EE9;
    background: transparent;
    font-weight: 600;
    margin-left: 5px;
}

#afterverification {
    display: none;
    text-align: center;
}

.resend_a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.resend_a a {
    display: block;
    height: 40px;
    width: 110px;
    line-height: 40px;
    text-align: center;
    background: #2C8840;
    color: #fff;
    margin: 0px 10px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    font-weight: 500;
    letter-spacing: 1px;
}

.resend_a a:hover {
    background: #419353;
    transition: background 0.3s ease-in-out;
}

#afterverification span {
    font-weight: 600;
    font-size: 17px;
}

.token_expire_con_button {
    text-align: center;
}


.token_expire_con {
    width: 400px;
}

.token_expire_con_top {
    width: 150px;
    margin: 0px auto;
}

.token_expire_con_middile {
    text-align: center;
    padding: 10px 0px;
}

.token_expire_con_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.token_expire_con_button {
    display: flex;

}

.token_expire_con_middile {
    font-size: 16px;
    padding: 20px 0px;
}

.token_expire_con_button a {
    display: block;
    background-color: #627226;
    color: #fff;
    padding: 10px 20px;
    margin: 0px 10px;
    transition: all 0.3s ease;
}

.token_expire_con_button a:hover {
    background-color: #70822c;
    transition: all 0.3s ease;
}

.login_info {
    margin-top: 10px;
    display: none;
}

.login_info a {
    font-weight: 700;
}