/* OTP Modal Styles */
.otp-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.otp-modal.active {
    display: flex;
}

.otp-modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.otp-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.otp-header {
    text-align: center;
    margin-bottom: 25px;
}

.otp-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 5px;
}

.otp-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.otp-input-group {
    margin-bottom: 30px;
}

.otp-input-group label {
    display: block;
    color: #8b66ba;
    /* Purple color from image */
    font-size: 16px;
    margin-bottom: 15px;
}

.otp-pin-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #8b66ba;
    font-size: 32px;
    letter-spacing: 15px;
    text-align: left;
    outline: none;
    padding-bottom: 10px;
}

.otp-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.btn-otp-enter {
    background-color: #7e57c2;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(126, 87, 194, 0.3);
}

.btn-otp-resend {
    color: #7e57c2;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.otp-recaptcha-text {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.otp-recaptcha-text a {
    color: #4285f4;
    text-decoration: none;
}

/* Phone Input Stage Styles */
.otp-phone-stage {
    text-align: center;
}

.otp-phone-stage .form-control {
    font-size: 20px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.btn-send-otp {
    background-color: #31338a;
    color: #fff;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}