/* ==========================================================================
 * Lagom SMS Login — استایل حداقلی و قالب‌مستقل
 * هیچ رنگ/فونت دستی تعریف نمی‌شود؛ ظاهر دکمه‌ها، اینپوت‌ها و هشدارها از
 * کلاس‌های خود قالب فعال (.btn .form-control .alert ...) به ارث می‌رسد تا روی
 * هر قالب WHMCS عیناً مثل خودش دیده شود. جهت (RTL/LTR) هم از صفحه ارث می‌رسد.
 * ========================================================================== */

.lsl-block { display: block; width: 100%; }
.lsl-mt { margin-top: 12px; }
.lsl-panel { margin-top: 6px; }
.lsl-center { text-align: center; }

/* فقط ارقام کد/شماره برای خوانایی، چپ‌چین و وسط‌چین می‌شوند */
.lsl-num { direction: ltr; text-align: center; }
.lsl-code-input { letter-spacing: .45em; font-weight: 700; }

.lsl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* لینک‌متن (تغییر شماره / بازگشت) با ارث‌بری رنگ از قالب */
.lsl-link {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-decoration: underline;
    opacity: .9;
}
.lsl-link:hover { opacity: 1; }
.lsl-link[disabled] { opacity: .5; cursor: default; text-decoration: none; }

.lsl-muted { opacity: .7; font-size: .9em; }

.lsl-spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: lsl-spin .7s linear infinite;
    vertical-align: -2px;
    margin-inline-end: 7px;
}
@keyframes lsl-spin { to { transform: rotate(360deg); } }

/* آیکن موبایل داخل دکمه‌ی تریگر */
.lsl-trigger-ico {
    width: 1em;
    height: 1em;
    vertical-align: -2px;
    margin-inline-end: 6px;
}
