#otpStep a {
    color: black;
    text-decoration: none;
    /*padding-bottom: 30px;*/
}
input, textarea, select {
  font-size: 16px !important;
}
.remember {
    display: flex;
    justify-content: space-between;
}

.remember a {
    color: black;
    text-decoration: none;
}

.otp-box {
    display: flex;
    gap: 15px;
}

.otp-input {
    width: 52px;
    height: 58px;
    text-align: center;
    font-size: 24px;
    border: 1.5px solid #b0b0b0;
    border-radius: 10px;
    outline: none;
    caret-color: #b0b0b0;
}

.otp-input:focus {
    border-color: #7062B2;
    box-shadow: 0 0 5px rgba(0, 150, 136, 0.3);
    outline: none;
}

.login-sec-left {
    padding: 0 30px 0 70px;
    width: 100%;
}

.login-sec-left1 {
    height: 100vh;
    display: flex;
    align-items: center;
}

.login-sec-left .login-sec-left-heading h4 {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 0;
}

.login-sec-left .login-sec-left-heading h3 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    background: linear-gradient(90deg, #413382, #7062B2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-sec-left form {
    margin-top: 40px;
}

.login-sec-left form .form-control {
    border: 1px solid #000;
    height: 48px;
}

.login-sec-left .btn:last-child,
.login-sec-left .btn-main {
    border-radius: 7px;
    background: linear-gradient(90deg, #413382, #7062B2);
    border: none;
    padding: 10px 36px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 3px solid #c9c4c4;
    border-top: none;
    color: white;
    display: inline-block;
    text-decoration: none;
}

.login-sec-left .btn:last-child:hover,
.login-sec-left .btn-main:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.login-sec-right {
    position: fixed;
    right: 0;
}

.login-sec-right img {
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media (min-width: 992px) {
    .login-sec-right {
        position: fixed;
        right: 0;
        top: 0;
        width: 50%;
        height: 100vh;
    }

    .login-sec-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .login-sec-right {
        position: relative;
        width: 100%;
        height: 100vh;
    }

    .login-sec-right img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
@media (max-width: 921px) {
    .login-sec-left .btn:last-child, .login-sec-left .btn-main {
    padding: 6px 35px;
    }
    .otp-input {
    width: 45px;
    height: 45px;
    
}
}

@media (max-width: 700px) {
    .login-sec-right {
        position: relative;
        width: 100%;
        height: 100vh;
        display: none;
    }

    .login-sec-left {
        padding: 0 30px 0 30px;
        width: 100%;
    }
}
@media (max-width: 400px) {
    .login-sec-left1 {
    height: 80vh;
    display: flex;
    align-items: center;
}
     .remember{
        font-size: 14px;
    }
    .otp-input {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
        .login-sec-left .btn:last-child, .login-sec-left .btn-main {
        padding: 8px 35px;
        font-size: 13px;
    }
}
