/* public/theme/fashion-theme/css/otp.css */
/* 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: var(--primary-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.otp-pin-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    font-size: 32px;
    letter-spacing: 15px;
    text-align: center;
    outline: none;
    padding-bottom: 10px;
}

.otp-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.otp-recaptcha-text {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.otp-recaptcha-text a {
    color: var(--primary-color);
    text-decoration: none;
}