#otpStep a {
    color: black;
    text-decoration: none;
    padding-bottom: 30px;
}

.toggle-password {
    position: absolute;
    top: 42px;
    right: 15px;
    cursor: pointer;
}

.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;
}

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

.login-sec-left h4 {
    font-size: 46px;
}

.login-sec-left h3 {
    font-size: 40px;
    font-weight: 600;
    background: linear-gradient(90deg, #413382, #7062B2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.login-sec button,
.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;
    opacity: inherit;
    border-top: none;
    color: white;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
}

.login-sec button:hover,
.btn-main:hover {
    background: black;
    border-color: #11ABB0;
    color: white;
}

.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: 1440px) {
    .login-sec-left h3 {
        font-size: 35px;
        margin-top: -13px;
        margin-bottom: 22px;
    }

    .login-sec-left h4 {
        font-size: 35px;
    }

    .form-control {
        height: 42px;
        border: 1px solid #000;
    }
}

@media (max-width: 700px) {
    .login-sec-right {
        display: none;
    }

    .login-sec-left {
        padding: 0 25px;
    }
}
