/* * JAY Relog - Gravity Forms Addon Styles 
 * استایل‌های کاملا مستقل و مینیمال
 */
.jay-gf-otp-active {
    padding: 20px;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    background-color: #fafafa;
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
    font-family: inherit;
}
.jay-gf-otp-active h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2em;
    font-weight: bold;
}
.jay-gf-otp-active p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}
/* کانتینر فیلدهای OTP */
.jay-gf-otp-active .jay-otp-fields-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    direction: ltr;
}
/* فیلد تکی اعداد */
.jay-gf-otp-active .jay-otp-digit-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 1.5em;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
}
.jay-gf-otp-active .jay-otp-digit-input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}
/* دکمه تایید */
.jay-gf-otp-active .jay-login-register-button {
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    transition: background 0.3s;
}
.jay-gf-otp-active .jay-login-register-button:hover {
    background: #005177;
}
.jay-gf-otp-active .jay-login-register-button:disabled {
    background: #999;
    cursor: not-allowed;
}
/* بخش تایمر و ارسال مجدد */
.jay-gf-otp-active .jay-login-register-timer-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 13px;
    align-items: center;
}
.jay-gf-otp-active .jay-login-register-resend-link {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}
.jay-gf-otp-active .jay-login-register-resend-link[disabled] {
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}
.jay-gf-otp-active .jay-login-register-timer {
    color: #d63638;
    font-weight: bold;
    direction: ltr;
}
/* پیام‌ها */
.jay-gf-otp-active .jay-login-register-messages {
    margin-top: 15px;
    display: none;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
}
.jay-gf-otp-active .jay-login-register-messages.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.jay-gf-otp-active .jay-login-register-messages.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}