.login-register {
    background: #00A86B;
    background: linear-gradient(97deg, rgba(0, 168, 107, 1) 52%, rgba(41, 79, 65, 1) 100%);
}
img.login-1 {
    width: 100%;
}
.login-box {
    background: #ededed;
    border-radius: 35px;
    margin-top: 5em;
    padding: 20px;
    box-shadow: #818181b3 3px 3px 6px 0px inset, rgb(121 121 121 / 65%) -3px -3px 6px 1px inset;
}
.login-pane {
    height: 100vh;
}
h3.box-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 18px;
}
.login-pane form {
    width: 75%;
    margin: 0 auto;
}
.login-pane .form-control {
    border-radius: 6px;
}
.login-pane .btn-info {
    color: #ffffff;
    background-color: #0072BB;
    border-color: #0072BB;
}
form#otpMethodForm {
    width: 100%;
}

/* Otp Verification */
.otp-input {
    display: flex;
    justify-content: center;
}

.otp-input input {
    width: 40px;
    height: 40px;
    margin: 0 8px;
    text-align: center;
    font-size: 16px;
    border: 2px solid #616daf;
    border-radius: 12px;
    background-color: #e8f0fe;
    color: #333;
    transition: all 0.3s ease;
}

.otp-input input:focus {
    border-color: #a556f6;
    box-shadow: 0 0 0 2px rgba(166, 86, 246, 0.3);
    outline: none;
}

.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input input[type="number"] {
    -moz-appearance: textfield;
}

button:disabled {
    background: #cccccc;
    border-color: #999999;
    color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#timer {
    font-size: 14px;
    color: #ebebeb;
    font-weight: 500;
    margin-left: 10px;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.expired {
    animation: pulse 2s infinite;
    color: #ff4444;
}

.resend-link {
    color: #f5b419;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.resend-link:hover {
    color: #a556f6;
    text-decoration: underline;
}

.resend-text {
    margin-bottom: 10px;
}

.change-otp-method {
    margin-bottom: 10px;
}
/* User Session css */

form#clearSessionForm {
    width: 100%;
}

label.loan-title {
    font-size: 12px;
}

label.loan-title span {
    font-size: 16px;
    font-weight: 500;
}
.course-preview h6 {
    font-size: 12px;
}
.course-preview {
    background: #377da5;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}
.course h2 {
    font-size: 24px;
    margin-bottom: 14px;
}
.card-box-footer {
    font-size: 12px;
    margin: 12px 0;
}

.loan-details {
    background: #e3e3e3;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}
.session-out {
    position: absolute;
    top: -65px;
    left: -65px;
}
.session-out img {
    width: 180px;
}
.last-login {
    background: #E23D28;
    padding: 10px;
    border-radius: 12px;
    color: #fff;
    margin: 12px 0;
}
.last-login h2 {
    margin-bottom: 0;
    font-size: 20px;
}
.login-box.user-active {
    margin-top: 2em;
}