/*!
 * AapanSouq OTP System — [professional_login] + full-page /my-account takeover
 */

/* ---------- Full-page shell ---------- */
body.umv-asq-fullpage {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(1200px 800px at 15% -10%, #eef2ff 0%, transparent 60%),
        radial-gradient(1000px 700px at 100% 100%, #f0fdfa 0%, transparent 55%),
        #f8fafc;
    color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.umv-asq-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 40px 20px;
}
.umv-asq-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0f172a;
}
.umv-asq-brand img {
    max-height: 60px;
    max-width: 220px;
    display: block;
}
.umv-asq-brand-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}
.umv-asq-back {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}
.umv-asq-back a {
    color: inherit;
    text-decoration: none;
}
.umv-asq-back a:hover {
    color: #0f172a;
    text-decoration: underline;
}

/* ---------- Card (used both in shortcode + full-page) ---------- */
.umv-asq-card {
    width: 100%;
    max-width: 420px;
    padding: 32px 28px 26px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow:
        0 30px 60px -30px rgba(15, 23, 42, 0.25),
        0 2px 8px -4px rgba(15, 23, 42, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #0f172a;
}
.umv-asq-title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f172a;
}
.umv-asq-sub {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}
.umv-asq-label {
    display: block;
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.umv-asq-input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 10px 14px;
    margin-top: 6px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    color: #0f172a;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.umv-asq-input:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.umv-asq-input-otp {
    text-align: center;
    letter-spacing: 0.4em;
    font-size: 22px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    height: 56px;
}
.umv-asq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 18px;
    margin-top: 16px;
    border: 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.05s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.umv-asq-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.umv-asq-btn-primary {
    background: #0f172a;
    color: #fff;
}
.umv-asq-btn-primary:hover:not(:disabled) {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.4);
}
.umv-asq-btn-wa {
    background: #25D366;
    color: #fff;
    margin-top: 4px;
}
.umv-asq-btn-wa:hover {
    background: #1ebe57;
    transform: translateY(-1px);
    color: #fff;
}
.umv-asq-linkbtn {
    background: transparent;
    border: 0;
    padding: 10px 0;
    margin-top: 8px;
    color: #2563eb;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}
.umv-asq-linkbtn:disabled {
    color: #94a3b8;
    cursor: not-allowed;
}
.umv-asq-linkbtn:hover:not(:disabled) {
    text-decoration: underline;
}
.umv-asq-hint {
    margin: 0 0 12px;
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.umv-asq-hint strong { color: #0f172a; }
.umv-asq-help {
    font-size: 12px;
    color: #64748b;
    margin: 8px 0 14px;
    line-height: 1.6;
}
.umv-asq-msg {
    min-height: 20px;
    margin: 10px 0 0;
    font-size: 13px;
    color: #64748b;
}
.umv-asq-msg-ok { color: #15803d; }
.umv-asq-msg-err { color: #b91c1c; }
.umv-asq-tos {
    margin: 22px 0 0;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}
.umv-asq-loggedin {
    text-align: center;
}
.umv-asq-loggedin p {
    color: #334155;
    margin-bottom: 16px;
}

/* ---------- Tabs ---------- */
.umv-asq-tabs {
    display: flex;
    gap: 6px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    margin: 0 0 22px;
}
.umv-asq-tab {
    flex: 1 1 50%;
    background: transparent;
    border: 0;
    border-radius: 9px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #475569;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.umv-asq-tab:hover:not(.is-active) {
    color: #0f172a;
}
.umv-asq-tab.is-active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08),
                0 4px 12px -6px rgba(15, 23, 42, 0.15);
}
.umv-asq-tos a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
.umv-asq-tos a:hover { text-decoration: underline; }

/* Small screens */
@media (max-width: 480px) {
    .umv-asq-card {
        padding: 24px 20px 20px;
        border-radius: 14px;
    }
    .umv-asq-title { font-size: 20px; }
    .umv-asq-brand img { max-height: 48px; }
}
