/*!
 * Jadsontur Login - Estilos do novo painel de autenticacao
 *
 * Design minimalista mobile-first com tabs Login/Cadastro,
 * Google Sign-In no topo e modal para recuperacao de senha.
 *
 * @package Jadsontur
 * @author  Uebsites - https://klassificado.com.br
 * @since   3.5.0
 * @modified 2026-04-27 09:53:00
 */

/* ============================================================
   1. Reset e variaveis (escopo restrito ao login)
   ============================================================ */
.jt-login-page {
    --jt-primary: #2563eb;
    --jt-primary-hover: #1d4ed8;
    --jt-primary-active: #1e40af;
    --jt-primary-soft: #eff6ff;
    --jt-text: #111827;
    --jt-text-secondary: #6b7280;
    --jt-text-muted: #9ca3af;
    --jt-border: #e5e7eb;
    --jt-border-focus: #2563eb;
    --jt-bg: #f5f3ff;
    --jt-card-bg: #ffffff;
    --jt-error: #dc2626;
    --jt-error-bg: #fef2f2;
    --jt-success: #059669;
    --jt-success-bg: #ecfdf5;
    --jt-radius: 12px;
    --jt-radius-lg: 16px;
    --jt-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.08), 0 1px 2px -1px rgb(0 0 0 / 0.04);
    --jt-shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.06), 0 8px 10px -6px rgb(0 0 0 / 0.04);
    --jt-transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Full-width: quebra containers do tema */
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--jt-bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--jt-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    overflow-x: hidden;
}

.jt-login-page *,
.jt-login-page *::before,
.jt-login-page *::after {
    box-sizing: border-box;
}

/* ============================================================
   2. Container e card
   ============================================================ */
.jt-login-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.jt-login-card {
    background: var(--jt-card-bg);
    border-radius: var(--jt-radius-lg);
    box-shadow: var(--jt-shadow-lg);
    padding: 32px 24px;
}

@media (min-width: 480px) {
    .jt-login-card {
        padding: 40px 32px;
    }
}

.jt-login-logo {
    text-align: center;
    margin-bottom: 8px;
}

.jt-login-logo img {
    max-height: 56px;
    width: auto;
    margin: 0 auto;
}

.jt-login-slogan {
    text-align: center;
    color: var(--jt-text-secondary);
    font-size: 14px;
    margin: 0;
}

/* ============================================================
   3. Botao Google
   ============================================================ */
.jt-btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    min-height: 48px;
    background: #ffffff;
    border: 1px solid var(--jt-border);
    border-radius: var(--jt-radius);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--jt-text);
    cursor: pointer;
    transition: background var(--jt-transition), border-color var(--jt-transition), box-shadow var(--jt-transition);
}

.jt-btn-google:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #d1d5db;
}

.jt-btn-google:focus-visible {
    outline: 2px solid var(--jt-primary);
    outline-offset: 2px;
}

.jt-btn-google:disabled {
    opacity: 0.6;
    cursor: wait;
}

.jt-btn-google svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.jt-btn-google .jt-spinner {
    width: 16px;
    height: 16px;
}

/* ============================================================
   4. Divider "ou continue com e-mail"
   ============================================================ */
.jt-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.jt-divider::before,
.jt-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--jt-border);
}

.jt-divider-text {
    color: var(--jt-text-muted);
    font-size: 13px;
    white-space: nowrap;
}

/* ============================================================
   5. Tabs Login/Cadastro
   ============================================================ */
.jt-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--jt-border);
    margin-bottom: 24px;
    position: relative;
}

.jt-tab {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--jt-text-secondary);
    cursor: pointer;
    transition: color var(--jt-transition), border-color var(--jt-transition);
    margin-bottom: -1px;
}

.jt-tab:hover {
    color: var(--jt-text);
}

.jt-tab:focus-visible {
    outline: 2px solid var(--jt-primary);
    outline-offset: -2px;
    border-radius: 4px;
}

.jt-tab[aria-selected="true"] {
    color: var(--jt-primary);
    border-bottom-color: var(--jt-primary);
    font-weight: 600;
}

.jt-tabpanel {
    display: none;
    animation: jt-fade-in 200ms ease-out;
}

.jt-tabpanel.is-active {
    display: block;
}

@keyframes jt-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   6. Forms, labels, inputs
   ============================================================ */
.jt-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jt-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.jt-field-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.jt-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--jt-text);
    line-height: 1.4;
}

.jt-link {
    color: var(--jt-primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--jt-transition);
}

.jt-link:hover,
.jt-link:focus-visible {
    color: var(--jt-primary-hover);
    text-decoration: underline;
}

.jt-link:focus-visible {
    outline: 2px solid var(--jt-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.jt-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.jt-input-icon {
    position: absolute;
    left: 14px;
    color: var(--jt-text-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jt-input-icon svg {
    width: 18px;
    height: 18px;
}

.jt-input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px 12px 44px;
    background: #ffffff;
    border: 1px solid var(--jt-border);
    border-radius: var(--jt-radius);
    font-family: inherit;
    font-size: 16px; /* evita zoom iOS */
    color: var(--jt-text);
    transition: border-color var(--jt-transition), box-shadow var(--jt-transition);
    -webkit-appearance: none;
    appearance: none;
}

.jt-input::placeholder {
    color: var(--jt-text-muted);
}

.jt-input:hover:not(:disabled) {
    border-color: #d1d5db;
}

.jt-input:focus {
    outline: none;
    border-color: var(--jt-border-focus);
    box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.jt-input[aria-invalid="true"] {
    border-color: var(--jt-error);
}

.jt-input[aria-invalid="true"]:focus {
    box-shadow: 0 0 0 3px rgb(220 38 38 / 0.1);
}

.jt-input.has-toggle {
    padding-right: 48px;
}

.jt-input-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--jt-text-muted);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--jt-transition), background var(--jt-transition);
}

.jt-input-toggle:hover {
    color: var(--jt-text);
    background: #f3f4f6;
}

.jt-input-toggle:focus-visible {
    outline: 2px solid var(--jt-primary);
    outline-offset: 2px;
}

.jt-input-toggle svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   7. Checkbox personalizado
   ============================================================ */
.jt-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--jt-text-secondary);
    user-select: none;
}

.jt-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--jt-primary);
    cursor: pointer;
    margin: 0;
}

.jt-check-terms {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.5;
}

.jt-check-terms input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================================
   8. Botao primario (Entrar / Criar conta)
   ============================================================ */
.jt-btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    min-height: 48px;
    background: var(--jt-primary);
    border: none;
    border-radius: var(--jt-radius);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: background var(--jt-transition), box-shadow var(--jt-transition), transform var(--jt-transition);
    margin-top: 8px;
}

.jt-btn-primary:hover:not(:disabled) {
    background: var(--jt-primary-hover);
    box-shadow: 0 4px 12px rgb(37 99 235 / 0.3);
}

.jt-btn-primary:active:not(:disabled) {
    background: var(--jt-primary-active);
    transform: translateY(1px);
}

.jt-btn-primary:focus-visible {
    outline: 2px solid var(--jt-primary);
    outline-offset: 2px;
}

.jt-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.jt-btn-primary.is-loading .jt-btn-text {
    opacity: 0.7;
}

/* ============================================================
   9. Spinner
   ============================================================ */
.jt-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: jt-spin 0.6s linear infinite;
}

.jt-spinner.is-hidden {
    display: none;
}

@keyframes jt-spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   10. Mensagens de feedback
   ============================================================ */
.jt-message {
    padding: 12px 14px;
    border-radius: var(--jt-radius);
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid transparent;
    margin-bottom: 16px;
}

.jt-message.is-hidden {
    display: none;
}

.jt-message.is-error {
    background: var(--jt-error-bg);
    color: #991b1b;
    border-color: #fecaca;
}

.jt-message.is-success {
    background: var(--jt-success-bg);
    color: #065f46;
    border-color: #a7f3d0;
}

/* ============================================================
   11. Verificacao de e-mail (cadastro)
   ============================================================ */
.jt-email-verify {
    background: var(--jt-primary-soft);
    border: 1px dashed #bfdbfe;
    border-radius: var(--jt-radius);
    padding: 14px;
}

.jt-email-verify-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 4px;
}

.jt-email-verify-help {
    font-size: 12px;
    color: var(--jt-text-secondary);
    margin: 0 0 10px;
    line-height: 1.4;
}

.jt-email-verify-row {
    display: flex;
    gap: 8px;
}

.jt-email-verify-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 16px;
    text-align: center;
    letter-spacing: 4px;
    background: #ffffff;
}

.jt-email-verify-input:focus {
    outline: none;
    border-color: var(--jt-primary);
    box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.jt-email-verify-btn {
    padding: 10px 14px;
    background: var(--jt-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--jt-transition);
}

.jt-email-verify-btn:hover:not(:disabled) {
    background: var(--jt-primary-hover);
}

.jt-email-verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.jt-email-verify-msg {
    margin-top: 8px;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
}

.jt-email-verify-msg.is-hidden {
    display: none;
}

.jt-email-verify-msg.is-error {
    background: var(--jt-error-bg);
    color: #991b1b;
}

.jt-email-verify-msg.is-success {
    background: var(--jt-success-bg);
    color: #065f46;
}

/* ============================================================
   12. Forgot password / Reset password (telas dedicadas)
   ============================================================ */
.jt-action-header {
    text-align: center;
    margin-bottom: 24px;
}

.jt-action-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--jt-primary-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-primary);
}

.jt-action-icon svg {
    width: 28px;
    height: 28px;
}

.jt-action-icon.is-success {
    background: var(--jt-success-bg);
    color: var(--jt-success);
}

.jt-action-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--jt-text);
    margin: 0 0 4px;
}

.jt-action-subtitle {
    font-size: 14px;
    color: var(--jt-text-secondary);
    margin: 0;
}

.jt-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--jt-primary);
    text-decoration: none;
    margin-top: 20px;
}

.jt-back-link:hover {
    text-decoration: underline;
}

.jt-back-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   13. Footer (copyright + links legais)
   ============================================================ */
.jt-login-footer {
    text-align: center;
    color: var(--jt-text-muted);
    font-size: 12px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
}

.jt-footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 6px;
}

.jt-footer-legal a {
    color: var(--jt-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--jt-transition);
}

.jt-footer-legal a:hover {
    color: var(--jt-primary-hover);
    text-decoration: underline;
}

.jt-footer-sep {
    color: var(--jt-text-muted);
    opacity: 0.5;
}

.jt-footer-copy {
    margin: 0;
}

.jt-footer-copy a {
    color: var(--jt-primary);
    text-decoration: none;
    font-weight: 500;
}

.jt-footer-copy a:hover {
    text-decoration: underline;
}

/* Imagem do patrocinador (rodape login)
   Autor: Uebsites - https://klassificado.com.br - 2026-04-30 */
.jt-footer-sponsor {
    display: flex;
    justify-content: center;
    padding-bottom: 8px;
}

.jt-footer-sponsor img {
    display: block;
    border-radius: 6px;
    object-fit: contain;
}

/* ============================================================
   14. Grid 2 colunas (senha + confirmar no cadastro)
   ============================================================ */
.jt-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .jt-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   15. Acessibilidade — reduce motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .jt-login-page *,
    .jt-login-page *::before,
    .jt-login-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   16. Visually hidden (screen readers only)
   ============================================================ */
.jt-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   17. Layout SPLIT (v3.6.0) — branding esquerda + login direita
        Mobile-first: branding aparece PRIMEIRO (order:1),
        card de login aparece DEPOIS (order:2).
   ============================================================ */
.jt-login-page.jt-layout-split {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    min-height: 100vh;
}

.jt-login-branding {
    order: 1;
    width: 100%;
    padding: 32px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jt-login-main {
    order: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px 32px;
    background: var(--jt-bg);
}

.jt-layout-split .jt-login-container {
    max-width: 460px;
    gap: 16px;
}

.jt-branding-inner {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.jt-branding-logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.jt-branding-logo img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

.jt-branding-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--jt-text);
    margin: 0;
    line-height: 1.2;
}

.jt-branding-subtitle {
    font-size: 15px;
    color: var(--jt-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.jt-branding-topics {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
}

.jt-branding-topics li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--jt-text);
    line-height: 1.45;
}

.jt-topic-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--jt-primary-soft);
    color: var(--jt-primary);
    font-size: 16px;
    line-height: 1;
}

.jt-topic-icon svg {
    width: 16px;
    height: 16px;
}

.jt-branding-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--jt-radius);
    overflow: hidden;
    background: #000;
    box-shadow: var(--jt-shadow);
    margin-top: 8px;
}

.jt-branding-video video,
.jt-branding-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

/* Tablet — mais respiro, ainda empilhado */
@media (min-width: 600px) {
    .jt-login-branding { padding: 48px 32px; }
    .jt-login-main { padding: 32px; }
    .jt-branding-title { font-size: 26px; }
    .jt-branding-topics { grid-template-columns: 1fr 1fr; }
}

/* Desktop — split lado a lado */
@media (min-width: 1024px) {
    .jt-login-page.jt-layout-split {
        flex-direction: row;
    }
    .jt-login-branding {
        order: 0;
        flex: 1 1 50%;
        min-height: 100vh;
        padding: 56px 48px;
    }
    .jt-login-main {
        order: 0;
        flex: 1 1 50%;
        min-height: 100vh;
        padding: 56px 32px;
    }
    .jt-branding-inner {
        text-align: left;
        max-width: 480px;
    }
    .jt-branding-title {
        font-size: 32px;
    }
    .jt-branding-subtitle {
        font-size: 17px;
    }
    .jt-branding-topics {
        grid-template-columns: 1fr;
    }
}

/* A11y: respeita reduce-motion no autoplay de video */
@media (prefers-reduced-motion: reduce) {
    .jt-branding-video video[autoplay] {
        animation: none;
    }
}

/* ============================================================
   18. Modal de verificacao de e-mail (v3.24.0)
   Autor: Uebsites - https://klassificado.com.br - 2026-05-15
   ============================================================ */
.jt-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.jt-modal.is-open {
    display: flex;
}

.jt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.jt-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: var(--jt-radius);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
    padding: 28px 24px 24px;
    text-align: center;
    animation: jt-modal-in 0.18s ease-out;
}

@keyframes jt-modal-in {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.jt-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--jt-text-muted);
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--jt-transition);
}

.jt-modal-close:hover {
    background: var(--jt-bg);
    color: var(--jt-text);
}

.jt-modal-close svg {
    width: 18px;
    height: 18px;
}

.jt-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--jt-success-bg);
    color: var(--jt-success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jt-modal-icon svg {
    width: 32px;
    height: 32px;
}

.jt-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--jt-text);
    margin: 0 0 8px;
}

.jt-modal-text {
    font-size: 14px;
    color: var(--jt-text-secondary);
    line-height: 1.5;
    margin: 0 0 18px;
}

.jt-modal-text strong {
    color: var(--jt-text);
    word-break: break-all;
}

.jt-verify-code-input {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid var(--jt-border);
    border-radius: 10px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 22px;
    text-align: center;
    letter-spacing: 8px;
    background: #ffffff;
    color: var(--jt-text);
    transition: border-color var(--jt-transition), box-shadow var(--jt-transition);
}

.jt-verify-code-input:focus {
    outline: none;
    border-color: var(--jt-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.jt-link-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    background: transparent;
    border: none;
    color: var(--jt-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background var(--jt-transition);
}

.jt-link-btn:hover:not(:disabled) {
    background: var(--jt-primary-soft);
}

.jt-link-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

body.jt-modal-open {
    overflow: hidden;
}

@media (min-width: 480px) {
    .jt-modal-dialog {
        padding: 32px 32px 28px;
    }
    .jt-modal-title {
        font-size: 22px;
    }
}
