
:root{
  --bg1: #0e6a62;
  --bg2: #0b4c46;
  --card: #ffffff;
  --text: #0e1012;
  --muted: #5a6168;
  --brand: #2b7a66;
  --accent: #2b7a66;
  --shadow: 0 24px 64px rgba(0,0,0,.25);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;

  color: var(--text);
  background: #0f5e57;
}

.bg{
  position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(1200px 600px at 50% -10%, rgba(255,255,255,.12), transparent 60%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
}
.bokeh{
  position: absolute; inset-inline: 0; top: 40%;
  height: 200px; pointer-events: none; opacity: .55;
  background:
    radial-gradient(16px 16px at 8% 40%, rgba(255,214,114,.45), transparent 60%),
    radial-gradient(10px 10px at 18% 60%, rgba(255,214,114,.40), transparent 60%),
    radial-gradient(22px 22px at 28% 45%, rgba(255,214,114,.36), transparent 60%),
    radial-gradient(14px 14px at 42% 58%, rgba(255,214,114,.40), transparent 60%),
    radial-gradient(18px 18px at 56% 48%, rgba(255,214,114,.36), transparent 60%),
    radial-gradient(12px 12px at 70% 60%, rgba(255,214,114,.42), transparent 60%),
    radial-gradient(20px 20px at 82% 44%, rgba(255,214,114,.38), transparent 60%),
    radial-gradient(12px 12px at 92% 58%, rgba(255,214,114,.36), transparent 60%);
  filter: blur(.4px);
  animation: floatX 12s linear infinite;
}
@keyframes floatX{
  0%{ transform: translateX(-6%); }
  50%{ transform: translateX(6%); }
  100%{ transform: translateX(-6%); }
}

.login-shell{
  min-height: 70dvh;
  display: grid;
  place-items: center;
  padding: 16px;
}
.login-card{
  width: min(560px, 92vw);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
  text-align: center;
}
.brand-logo{
  width: 56px; height: 56px; object-fit: contain; display: block; margin: 0 auto 8px;
}
.brand-name{
  margin: 0 0 4px;
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--brand);
}
.card-title{
  margin: 0 0 16px;
  font-weight: 800;
  color: #1d232a;
  font-size: clamp(14px, 1.6vw, 16px);

  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
}
html[lang="fa"] .card-title,
html[lang="ar"] .card-title{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
  font-weight: 700 !important;
}

.form{ display: grid; gap: 12px; margin-top: 8px; }
.field{ text-align: left; display: grid; gap: 6px; }
.label{ font-weight: 700; color: #1a1f24; }
.control{ position: relative; }
.input{
  width: 100%; height: 46px; border-radius: 12px; border: 1px solid #cfd4da;
  background: #fff; color: var(--text); font-weight: 700;
  padding: 0 44px 0 12px;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.input::placeholder{ color:#9aa3ad; font-weight: 600; }
.input:focus{
  outline: none;
  border-color: #b2d2c8;
  box-shadow: 0 0 0 4px rgba(43,122,102,.16);
}

.eye{
  position: absolute; inset-inline-end: 8px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 8px; background: #f3f5f7; color: #36414a;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.eye svg{ width: 18px; height: 18px; }
.i-eye, .i-eye-off{ display: none; }
.eye[data-state="hidden"] .i-eye-off{ display: block; }
.eye[data-state="shown"]  .i-eye{ display: block; }

.quick-links{
  display: grid; gap: 6px; justify-items: start; margin-top: 2px; text-align: left;
}
.ql{
  display: inline-flex; align-items: center; gap: 8px;
  color: #2f4c6a; text-decoration: none; font-weight: 700;
}
.ql:hover{ text-decoration: underline; }
.i{ width: 14px; height: 14px; display: inline-block; border-radius: 4px; }
.i-id{ background: linear-gradient(135deg,#2b7a66,#51ad8c); }
.i-key{ background: linear-gradient(135deg,#e39b2c,#ffc45e); }
.i-activate{ background: linear-gradient(135deg,#1db954,#8be28a); }

.btn.primary{
  margin-top: 8px;
  border: 0; cursor: pointer; width: 120px; height: 40px; border-radius: 14px;
  color: #fff; font-weight: 800; letter-spacing: .2px;
  background: linear-gradient(180deg, #3a896f, #2b7a66);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn.primary:hover{ transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,.22); filter: brightness(1.03); }

html body .btn.primary,
html body .btn.ok,
html body .btn.cancel,
html body .btn.back,
html body .reg-back-btn,
html body .reg-back-btn.btn.back,
html body .reg-actions .btn,
html body .reg-actions .btn.primary,
html body .actions-row.reg-actions .btn,
html body .actions-row.reg-actions .btn.primary,
html body .reg-verify-send-btn,
html body .reg-verify-check-btn,
html body .reg-verify-modal-ok{
  border-radius: 14px !important;
}
.btn.primary:active{ transform: translateY(0); box-shadow: 0 10px 22px rgba(0,0,0,.18); }

.signup-hint{
  margin: 10px 0 0; color: var(--muted); font-weight: 300; text-align: center;
}
.signup-hint a{ color:#1e4b6b; text-decoration: none; font-weight: 800; }
.signup-hint a:hover{ text-decoration: underline; }

@media (max-width: 520px){
  .login-card{ width: min(480px, 94vw); }
}

.bg-video{
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
}
.bg-video video{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(.95) saturate(1.1);
}

.bg-video::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.84));
}

.bg-video::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 40% at 50% 10%, rgba(22, 86, 73, .30), transparent 70%),
    linear-gradient(180deg, rgba(12, 88, 74, .45), rgba(8, 54, 46, .65));
}

@font-face{
  font-family: "FARegular";
  src: url("ax/fonts/fa-regular-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.fa-user::before{
  font-family: "FARegular";
  content: "\f007";
  speak: never;
}

.form .btn.primary{

  justify-self: center;
  margin: 12px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form .label{
  font-weight: 400;
  font-size: 14px;
  color: #1a1f24;
}

.quick-links .ql{
  font-weight: 400;
  font-size: 15px;
}

.input::placeholder{
  font-weight: 400;
  color: #9aa3ad;
}

.input{
  font-size: 14px;
  font-weight: 400;
}

.input::placeholder{
  font-size: 13px;
  font-weight: 400;
  color: #a2acb6;
}

.input::-webkit-input-placeholder{ font-size: 13px; font-weight: 400; color:#a2acb6; }
.input::-moz-placeholder{ font-size: 13px; font-weight: 400; color:#a2acb6; }
.input:-ms-input-placeholder{ font-size: 13px; font-weight: 400; color:#a2acb6; }
.input:-moz-placeholder{ font-size: 13px; font-weight: 400; color:#a2acb6; }

.quick-links .ql{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #2f4c6a;
  text-decoration: none;
}

.quick-links .ql:hover{ text-decoration: underline; }

.quick-links .ql-icon{

  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
  flex: 0 0 auto;
}

.quick-links .ql{
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, text-shadow .18s ease;
  cursor: pointer;
}

.quick-links .ql-icon{
  transition: transform .18s ease, filter .18s ease;
}

.quick-links .ql:hover{
  transform: translateY(-1px) scale(1.05);
  text-shadow: 0 2px 10px rgba(0,0,0,.28);
}
.quick-links .ql:hover .ql-icon{
  transform: scale(1.12);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
}

.field-eye i{
  font-size: 18px; line-height: 1; pointer-events: none;
}

.field-eye{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 28px; height: 28px;
  border-radius: 0;
  color: #2B7A66;
  transform: translateY(-50%);
}

.field-eye i{
  font-size: 18px;
  line-height: 1;
  color: inherit;
}

.field-eye:hover{ transform: translateY(-50%) scale(1.05); }
.field-eye:active{ transform: translateY(-50%) scale(.98); }
.field-eye:focus-visible{
  outline: none;
}

.control .input{ padding-inline-end: 44px; }

.field-eye{
  position: absolute;
  inset-inline-end: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;

  background: transparent;
  border: none;
  box-shadow: none;

  color: #2B7A66;

  transition: transform .18s ease, color .18s ease;
}
.field-eye:hover{ transform: translateY(-50%) scale(1.05); }
.field-eye:active{ transform: translateY(-50%) scale(.98); }
.field-eye:focus-visible{ outline: none; }

.field-eye i{
  font-size: 18px;
  line-height: 1;
  color: inherit;
  pointer-events: none;
}

.control .input{
  padding-inline-end: 44px;
}

.quick-links{
  gap: 14px !important;
}

.quick-links .ql{
  line-height: 1.35;
}

.error-msg{
  display: none;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  color: #C62828;
}
.error-msg.is-shown{ display: block; }

.input.is-invalid{
  border-color: #C62828;
  box-shadow: 0 0 0 3px rgba(198,40,40,.18);
}

.field-eye{
  width: 34px;
  height: 34px;
  inset-inline-end: 8px;
}
.field-eye i{
  font-size: 22px;
}
.control .input{
  padding-inline-end: 52px;
}

.error-msg{
  display: none;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 400;
  color: #d32f2f;
}
.error-msg.is-shown{ display: block; }

.input.is-invalid{
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211,47,47,.18);
}

.login-card{ position: relative; }

.lang-picker{
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  z-index: 3;
}

.lang-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #dfe8e2;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0,0,0,.10);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.lang-btn::before{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius: inherit;
  background:#eaf4ef;
  z-index:-1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.lang-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
  filter: brightness(1.02);
}
.lang-btn i.bx-globe{ color:#2B7A66; font-size:18px; }
.lang-btn .lang-code{ font-weight:800; color:#174f42; }
.lang-btn .chevron{ font-size:18px; }

.lang-menu{
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  list-style: none;
  margin: 0; padding: 8px;
  background: #fff;
  border: 1px solid #e6ece8;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  min-width: 160px;
  display: none;
}
.lang-menu.show{ display:block; }

.lang-menu li{
  display: grid;
  grid-template-columns: 18px auto;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 800;
  color:#0f1113;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.lang-menu li .tick{ opacity:0; transform: translateY(-1px); }
.lang-menu li.is-current .tick{ opacity:1; }

.lang-menu li:hover{
  background: linear-gradient(180deg, #fff 0%, #ffe2c9 52%, #fff 100%);
}

@media (max-width: 420px){
  .lang-picker{ top: 8px; inset-inline-end: 8px; }
  .lang-btn::before{ inset:-3px; }
}

.lang-btn{
  inline-size: fit-content;
  padding: 0 10px;
  gap: 6px;
}

.lang-btn i.bx-globe{
  font-size: 14px;
}

.lang-btn .chevron{
  font-size: 14px;
}

.lang-btn .lang-code{
  font-weight: 400;
}

.lang-btn::before{
  inset: -3px;
}

.lang-menu li{ font-weight: 400; }
.lang-menu li.is-current .tick{ opacity: 1; }

html[lang="en"],
html[lang="tr"]{

  font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif;
  letter-spacing: .1px;
}

html[lang="fa"],
html[lang="ar"]{

  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif;
  letter-spacing: 0;
}

*{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body, input, button{ font-variant-numeric: tabular-nums; }

html[lang="fa"] .form .label,
html[lang="ar"] .form .label{
  text-align: right;
  display: block;
  letter-spacing: 0;
}

html[lang="fa"] .error-msg,
html[lang="ar"] .error-msg{
  text-align: right;
  direction: rtl;
  letter-spacing: 0;
}

html[lang="fa"] .input,
html[lang="ar"] .input{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
  text-align: start;
  font-weight: 400;
}

html[lang="fa"] .input::placeholder,
html[lang="ar"] .input::placeholder,
html[lang="fa"] .input::-webkit-input-placeholder,
html[lang="ar"] .input::-webkit-input-placeholder,
html[lang="fa"] .input::-moz-placeholder,
html[lang="ar"] .input::-moz-placeholder,
html[lang="fa"] .input:-ms-input-placeholder,
html[lang="ar"] .input:-ms-input-placeholder{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

html[lang="fa"] .field,
html[lang="ar"] .field{
  direction: rtl;
}

html[lang="fa"] body,
html[lang="ar"] body{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
  letter-spacing: 0 !important;
}

html[lang="fa"] .btn.primary,
html[lang="ar"] .btn.primary{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  font-size: 16px;
  line-height: 1;
}

html[lang="en"] .btn.primary,
html[lang="tr"] .btn.primary{
  font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: .2px !important;
  font-size: 15px;
  line-height: 1;
}

.btn.primary{
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
}

.quick-links .ql,
.quick-links .ql:hover,
.quick-links .ql:focus,
.quick-links .ql:active{
  text-decoration: none !important;
}

.quick-links .ql:hover{
  transform: translateY(-1px);
  text-shadow: 0 1px 8px rgba(0,0,0,.12);
}
.quick-links .ql-icon{
  transition: transform .18s ease, filter .18s ease;
}
.quick-links .ql:hover .ql-icon{
  transform: scale(1.08);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.28));
}

.signup-hint a{
  display: inline-block;
  text-decoration: none;
  transition: transform .18s ease, text-shadow .18s ease, filter .18s ease;
}

.signup-hint a:hover,
.signup-hint a:focus{
  text-decoration: none;
  transform: scale(1.06);
  text-shadow: 0 1px 8px rgba(0,0,0,.18);
}

.signup-hint a:active{
  transform: scale(.98);
}

.signup-hint a:visited{ text-decoration: none; }

body::before{ content: none !important; }

.login-card{
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
          backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow:
    0 18px 44px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -1px 0 rgba(0,0,0,.04);
  padding: clamp(18px,3vw,28px);
}

.login-card::before{
  content:"";
  position:absolute; inset:0; border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.90),
    inset 0 -1px 0 rgba(0,0,0,.03);
  pointer-events: none;
}

.lang-picker{ z-index: 2; }

.lang-btn{
  inline-size: fit-content;
  padding: 0 10px;
  gap: 6px;
}

.lang-btn i.bx-globe,
.lang-btn .chevron{ font-size: 14px; }

.lang-btn .lang-code{
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
html[lang="en"] .lang-btn .lang-code,
html[lang="tr"] .lang-btn .lang-code{
  font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif;
  letter-spacing: .1px;
}
html[lang="fa"] .lang-btn .lang-code,
html[lang="ar"] .lang-btn .lang-code{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif;
  letter-spacing: 0;
}

.lang-btn::before{ inset: -3px; }

.lang-menu{
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 6px;
}

.lang-menu li{
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  grid-template-columns: 18px auto;
}

html[lang="en"] .lang-menu li,
html[lang="tr"] .lang-menu li{
  font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif;
  letter-spacing: .1px;
}
html[lang="fa"] .lang-menu li,
html[lang="ar"] .lang-menu li{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif;
  letter-spacing: 0;
}

.lang-menu li .tick{
  margin-inline-end: 2px;
  transform: translateY(-1px);
}

html[lang="fa"] .lang-menu,
html[lang="ar"] .lang-menu{ text-align: start; }

.lang-menu{
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 6px;
}

.lang-menu li{
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  text-align: start;
}

.lang-menu li .tick{
  flex: 0 0 18px;
  text-align: center;
  transform: translateY(-1px);
}

.lang-menu li span:last-child{
  flex: 1 1 auto;
  text-align: start;
}

.lang-menu li{ justify-content: center !important; gap: 6px !important; }
.lang-menu li .tick{ order: 2 !important; flex: 0 0 auto !important; width: auto !important; height: auto !important; min-height: 0 !important; border-radius: 0 !important; box-shadow: none !important; padding: 0 !important; margin: 0 !important; display: inline-block !important; background: none !important; color: inherit !important; font-size: 14px !important; line-height: 1 !important; text-align: center; opacity: 0; }
.lang-menu li span:last-child{ order: 1 !important; flex: 0 1 auto !important; }
.lang-menu li.is-current .tick{ opacity: 1 !important; }

html[lang="fa"] .lang-menu li .tick, html[lang="ar"] .lang-menu li .tick{ transform: scaleX(-1) !important; }

.lang-menu li[data-lang="fa"],
.lang-menu li[data-lang="ar"]{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
  letter-spacing: 0;
}
.lang-menu li[data-lang="en"],
.lang-menu li[data-lang="tr"]{
  font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif !important;
  letter-spacing: .1px;
}

.overlay{
  position: fixed; inset: 0;
  display: none; place-items: center;
  background: rgba(0,0,0,.28);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
          backdrop-filter: blur(8px) saturate(120%);
  z-index: 50;
}
.overlay.is-open{ display: grid; }

.modal.sheet{
  width: min(640px, 92vw);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
          backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 22px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.9);
  padding: clamp(16px, 2.4vw, 24px);
}

.m-head{ display:grid; justify-items:center; gap:8px; margin-bottom:14px; }
.m-hero{ width:56px; height:56px; object-fit:contain; border-radius:12px; }
.m-title{ font-weight:800; font-size: clamp(18px,2.2vw,22px); margin:0; }
.m-note{ color:#4b5563; font-weight:600; text-align:center; margin:6px 0 0; }

.m-form{ display:grid; gap:14px; }
.m-form .field{ display:grid; gap:6px; }
.m-form .label{ font-weight:700; color:#111; }

.actions{ display:flex; gap:12px; justify-content:center; margin-top:6px; }
.btn{ min-height:48px; padding:12px 22px; border-radius:16px; border:0; cursor:pointer;
      font-weight:800; flex:1 1 200px; max-width:320px;
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease; }
.btn.ok{ background: linear-gradient(180deg,#2f8a66,#2b7a66); color:#fff; }
.btn.cancel{ background: linear-gradient(180deg,#e57373,#d84343); color:#fff; }
.btn:hover{ transform: scale(1.04); box-shadow: 0 12px 28px rgba(0,0,0,.22); filter: brightness(1.02); }
.btn:active{ transform: scale(.98); }

html[lang="fa"] .m-form .label,
html[lang="ar"] .m-form .label{ text-align:right; }
html[lang="fa"] .error-msg,
html[lang="ar"] .error-msg{ text-align:right; direction:rtl; }

#fidPin.input, #fidPin{ padding-inline-end:52px; }

.overlay{
  position: fixed; inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.28);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
          backdrop-filter: blur(8px) saturate(120%);
  z-index: 50;
}
.overlay.is-open{ display: grid; }

.modal.sheet{
  width: min(640px, 92vw);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
          backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 22px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.9);
  padding: clamp(16px, 2.4vw, 24px);
}

.m-head{ display:grid; justify-items:center; gap:8px; margin-bottom:14px; }
.m-hero{ width:56px; height:56px; object-fit:contain; border-radius:12px; }
.m-title{ font-weight:800; font-size: clamp(18px,2.2vw,22px); margin:0; }
.m-note{ color:#4b5563; font-weight:600; text-align:center; margin:6px 0 0; }

.m-form{ display:grid; gap:14px; }
.m-form .field{ display:grid; gap:6px; }
.m-form .label{ font-weight:300; color:#111; }

.actions{ display:flex; gap:12px; justify-content:center; margin-top:6px; }
.btn{ min-height:48px; padding:12px 22px; border-radius:16px; border:0; cursor:pointer;
      font-weight:800; flex:1 1 200px; max-width:320px;
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease; }
.btn.ok{ background: linear-gradient(180deg,#2f8a66,#2b7a66); color:#fff; }
.btn.cancel{ background: linear-gradient(180deg,#e57373,#d84343); color:#fff; }
.btn:hover{ transform: scale(1.04); box-shadow: 0 12px 28px rgba(0,0,0,.22); filter: brightness(1.02); }
.btn:active{ transform: scale(.98); }

html[lang="fa"] .m-form .label,
html[lang="ar"] .m-form .label{ text-align:right; }
html[lang="fa"] .error-msg,
html[lang="ar"] .error-msg{ text-align:right; direction:rtl; }

#fidPin.input, #fidPin{ padding-inline-end:52px; }

.modal.sheet .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0,0,0,.16);
}

html[lang="fa"] .modal.sheet .btn,
html[lang="ar"] .modal.sheet .btn{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
  font-weight: 800 !important;
  font-size: 16px;
  letter-spacing: 0 !important;
}

html[lang="en"] .modal.sheet .btn,
html[lang="tr"] .modal.sheet .btn{
  font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 15px;
  letter-spacing: .2px !important;
}

.modal.sheet .btn.ok{  background: linear-gradient(180deg,#2f8a66,#2b7a66); color:#fff; }
.modal.sheet .btn.cancel{ background: linear-gradient(180deg,#e57373,#d84343); color:#fff; }
.modal.sheet .btn:hover{ transform: scale(1.04); box-shadow: 0 12px 28px rgba(0,0,0,.22); filter: brightness(1.02); }
.modal.sheet .btn:active{ transform: scale(.98); }

:root{
  --auth-card-w: min(560px, 92vw);
  --auth-card-radius: 28px;
  --auth-card-pad: clamp(18px, 3vw, 28px);
}

.login-card{
  width: var(--auth-card-w) !important;
  border-radius: var(--auth-card-radius) !important;
  padding: var(--auth-card-pad) !important;
}

.modal.sheet{
  width: var(--auth-card-w) !important;
  border-radius: var(--auth-card-radius) !important;
  padding: var(--auth-card-pad) !important;
}

.modal.sheet .m-note{
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.35;

  font-size: clamp(12px, calc(14px + 0.3vw), 16px);
}

html[lang="fa"] .modal.sheet .m-note,
html[lang="ar"] .modal.sheet .m-note{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif;
  letter-spacing: 0;
}

.hint-suggest{
  display: none;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #ecfdf5;
  color: #0f5132;
  box-shadow: 0 1px 0 rgba(255,255,255,.7), 0 6px 14px rgba(0,0,0,.08);
  font-size: 12px;
  font-weight: 600;
}
.hint-suggest.is-shown{ display:block; }

.hint-suggest .fix-btn{
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 3px 10px;
  background: linear-gradient(180deg,#eaf1ff,#e0ebff);
  color: #1e3a8a;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255,255,255,.9), 0 6px 14px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.hint-suggest .fix-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
}
.hint-suggest .sug-domain{ font-weight: 800; margin: 0 6px; }

html[lang="fa"] .hint-suggest,
html[lang="ar"] .hint-suggest{ direction: rtl; text-align: right; }

.hint-suggest{
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 8px;
}

.hint-suggest .sug-domain{
  color: #0f5132;
  margin: 0 8px;
}

.hint-suggest .fix-btn{
  appearance: none; -webkit-appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 4px 12px;
  background: linear-gradient(180deg,#eaf1ff,#e0ebff);
  color: #1e3a8a;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255,255,255,.9), 0 6px 14px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.hint-suggest .fix-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

html[lang="fa"] .hint-suggest .fix-btn,
html[lang="ar"] .hint-suggest .fix-btn{
  font-family: "Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
  letter-spacing: 0 !important;
}

html[lang="en"] .hint-suggest .fix-btn,
html[lang="tr"] .hint-suggest .fix-btn{
  font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif !important;
  letter-spacing: .1px !important;
}

html[lang="fa"] .hint-suggest,
html[lang="ar"] .hint-suggest{
  direction: rtl; text-align: right;
}

input[type="email"],
.input[type="email"],
#fidEmail{
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: plaintext;
}

input[type="email"]::placeholder,
.input[type="email"]::placeholder,
#fidEmail::placeholder{
  text-align: left;
}

input[type="email"]::-webkit-input-placeholder{ text-align: left; }
input[type="email"]::-moz-placeholder{ text-align: left; }
input[type="email"]:-ms-input-placeholder{ text-align: left; }

input[type="email"],
.input[type="email"],
#fidEmail{
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: plaintext;
}

html[lang="fa"] input[type="email"]:placeholder-shown,
html[lang="ar"] input[type="email"]:placeholder-shown{
  direction: rtl !important;
  text-align: right !important;
}

html[lang="fa"] input[type="email"]:placeholder-shown::placeholder,
html[lang="ar"] input[type="email"]:placeholder-shown::placeholder{
  text-align: right !important;
}

html[lang="fa"] input[type="email"]:placeholder-shown::-webkit-input-placeholder,
html[lang="ar"] input[type="email"]:placeholder-shown::-webkit-input-placeholder{ text-align: right !important; }
html[lang="fa"] input[type="email"]:placeholder-shown::-moz-placeholder,
html[lang="ar"] input[type="email"]:placeholder-shown::-moz-placeholder{ text-align: right !important; }
html[lang="fa"] input[type="email"]:placeholder-shown:-ms-input-placeholder,
html[lang="ar"] input[type="email"]:placeholder-shown:-ms-input-placeholder{ text-align: right !important; }

html[lang="fa"] input[type="email"]:not(:placeholder-shown),
html[lang="ar"] input[type="email"]:not(:placeholder-shown){
  direction: ltr !important;
  text-align: left !important;
}

#userid{
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: plaintext;
}

html[lang="fa"] #userid:placeholder-shown,
html[lang="ar"] #userid:placeholder-shown{
  direction: rtl !important;
  text-align: right !important;
}

html[lang="fa"] #userid:placeholder-shown::placeholder,
html[lang="ar"] #userid:placeholder-shown::placeholder{
  text-align: right !important;
}

html[lang="fa"] #userid:placeholder-shown::-webkit-input-placeholder,
html[lang="ar"] #userid:placeholder-shown::-webkit-input-placeholder{ text-align: right !important; }
html[lang="fa"] #userid:placeholder-shown::-moz-placeholder,
html[lang="ar"] #userid:placeholder-shown::-moz-placeholder{ text-align: right !important; }
html[lang="fa"] #userid:placeholder-shown:-ms-input-placeholder,
html[lang="ar"] #userid:placeholder-shown:-ms-input-placeholder{ text-align: right !important; }

.modal.sheet .m-head{ width: 100%; }

.modal.sheet .m-note{
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.35;
  font-size: clamp(10px, 2vw, 16px);
}

#fpUserId{
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: plaintext;
}

html[lang="fa"] #fpUserId:placeholder-shown,
html[lang="ar"] #fpUserId:placeholder-shown{
  direction: rtl !important;
  text-align: right !important;
}
html[lang="fa"] #fpUserId:placeholder-shown::placeholder,
html[lang="ar"] #fpUserId:placeholder-shown::placeholder{
  text-align: right !important;
}

html[lang="fa"] #fpUserId:placeholder-shown::-webkit-input-placeholder,
html[lang="ar"] #fpUserId:placeholder-shown::-webkit-input-placeholder{ text-align:right !important; }
html[lang="fa"] #fpUserId:placeholder-shown::-moz-placeholder,
html[lang="ar"] #fpUserId:placeholder-shown::-moz-placeholder{ text-align:right !important; }
html[lang="fa"] #fpUserId:placeholder-shown:-ms-input-placeholder,
html[lang="ar"] #fpUserId:placeholder-shown:-ms-input-placeholder{ text-align:right !important; }

#actEmail{ direction:ltr !important; text-align:left !important; unicode-bidi: plaintext; }
html[lang="fa"] #actEmail:placeholder-shown,
html[lang="ar"] #actEmail:placeholder-shown{ direction:rtl !important; text-align:right !important; }

#actUserId{ direction:ltr !important; text-align:left !important; unicode-bidi: plaintext; }
html[lang="fa"] #actUserId:placeholder-shown,
html[lang="ar"] #actUserId:placeholder-shown{ direction:rtl !important; text-align:right !important; }

.modal.sheet .m-note{
  font-size: clamp(10px, 2vw, 16px);
}

.btn.primary{

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  height: auto;
  width: auto;
  min-width: clamp(120px, 22vw, 150px);

  padding-block: clamp(10px, 1.4vw, 12px);
  padding-inline: clamp(18px, 3vw, 28px);

  white-space: nowrap;
  word-break: keep-all;

  font-size: clamp(13px, 2vw, 16px);
  line-height: 1;
}

html[lang="fa"] .btn.primary,
html[lang="ar"] .btn.primary{
  font-weight: 800;
  letter-spacing: 0;
  font-size: clamp(14px, 2vw, 16px);
}

@media (max-width: 360px){
  .btn.primary{ min-width: 140px; }
}

.top-steps{
  --icon: 28px;
  --label: 11px;
  --gap: 24px;

  --circle-size:   calc(var(--icon) * 1.7);
  --color-done:    #4ad295;
  --color-current: #ffffff;
  --color-pending: rgba(255,255,255,.40);
  --line-done:     #4ad295;
  --line-pending:  rgba(255,255,255,.20);
  --bg-circle:     #0e3a3a;
}

.top-steps{ width:100%; overflow:hidden; }
.top-steps .steps-scroll{ width:100%; overflow:hidden; display:grid; place-items:center; }
.top-steps .steps-scroll .steps-line{
  display: grid !important;
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  grid-auto-flow: column !important;

  align-items: start !important;
  justify-content: stretch !important;
  gap: var(--gap);
  width: 100% !important;
  min-width: 100% !important;
  margin: 0;
  padding: 0;
}

.top-steps .step{
  display: grid; justify-items: center; gap: 8px; min-width: 0; text-align: center;
  position: relative; padding-top: 4px;
}
.top-steps .step i{
  font-size: var(--icon); line-height: 1; position: relative; z-index: 2;
  display: inline-grid; place-items: center;
  width: var(--circle-size); height: var(--circle-size);
  border-radius: 50%;
  background: var(--bg-circle);
  border: 2px solid var(--color-pending);
  color: var(--color-pending);
  transition: background-color .25s, border-color .25s, color .25s;
}
.top-steps .step .label{
  font-size: var(--label);
  line-height: 1.1;
  font-weight: 500;
  color: var(--color-pending);
  white-space: nowrap;
  letter-spacing: -.1px;

  text-align: center;
  justify-self: center;
  transition: color .25s, font-weight .25s;
}

.top-steps .step.is-current .label{ color: var(--color-current); font-weight: 800; }

@media (max-width: 1024px){
  .top-steps{ --icon: 24px; --label: 9px; --gap: 20px; }
}
@media (max-width: 900px){
  .top-steps{ --icon: 22px; --label: 8.5px; --gap: 16px; }
}

@media (max-width: 768px){
  .top-steps{ --icon: 20px; --label: 8.5px; --gap: 12px; }
  .top-steps .step .label{
    white-space: normal !important;
    overflow-wrap: break-word; word-break: normal;
    line-height: 1.15;
    width: 100%; max-width: 100%; box-sizing: border-box;
    align-self: start;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(var(--label) * 1.15 * 2 + 1px);
  }
}

@media (max-width: 640px){
  .top-steps{ --icon: 18px; --label: 7.5px; --gap: 10px; }
}
@media (max-width: 560px){
  .top-steps{ --icon: 16px; --label: 8px; --gap: 8px; }
  .top-steps .step .label{ letter-spacing: -.2px; }
}
@media (max-width: 420px){
  .top-steps{ --icon: 15px; --label: 7.5px; --gap: 6px; }
}

@supports (overflow: clip){ html,body{ overflow-x: clip; } }
@supports not (overflow: clip){ html,body{ overflow-x: hidden; } }

@media (min-width: 1024px){
  .top-steps{ --gap: 30px; }

  .top-steps .steps-scroll .steps-line{
    justify-content: center !important;
    width: auto !important;
    min-width: max-content !important;
  }
}

@media (min-width: 1440px){
  .top-steps{ --gap: 30px; }
}

.top-steps,
.top-steps .steps-scroll,
.top-steps .steps-line,
.top-steps .step{
  overflow: visible !important;
}
.top-steps{ position: relative; z-index: 100 !important; }

@supports (overflow: clip){ html,body{ overflow-x: clip; } }
@supports not (overflow: clip){ html,body{ overflow-x: hidden; } }

.top-steps .steps-scroll{ padding-block: 6px; }

@keyframes pulseRing{
  0%   { transform: translate(-50%,-50%) scale(.85); opacity:.95; }
  70%  { transform: translate(-50%,-50%) scale(2.0); opacity:0;   }
  100% { transform: translate(-50%,-50%) scale(2.0); opacity:0;   }
}
.top-steps .step.is-current i::after{
  content:"";
  position: absolute; left: 50%; top: 50%;
  width:  calc(var(--circle-size) * 1.15);
  height: calc(var(--circle-size) * 1.15);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.95);
  background: transparent;
  transform: translate(-50%,-50%) scale(.85);
  animation: pulseRing 1.8s ease-out infinite;
  pointer-events: none;
  z-index: 9999;
}

@media (prefers-reduced-motion: reduce){
  .top-steps .step.is-current i::after{ animation: none; }
}

.top-steps .step::after{
  content: "";
  position: absolute;
  top: calc(4px + var(--circle-size) / 2);
  height: 2px;
  width: calc(100% - var(--circle-size) + var(--gap) - 8px);
  inset-inline-start: calc(50% + var(--circle-size) / 2 + 4px);
  background: var(--line-pending);
  z-index: 0;
  transform: translateY(-1px);
}
.top-steps .step:last-child::after{ display: none; }

.top-steps .step:has(~ .is-current) i{
  background: var(--color-done);
  border-color: var(--color-done);
  color: transparent;
}
.top-steps .step:has(~ .is-current) i::after{
  content: "";
  position: absolute; inset: 0;
  background: center/60% no-repeat
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e3a3a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  border: none; border-radius: 0;
  animation: none; transform: none;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 3;
}
.top-steps .step:has(~ .is-current) .label{ color: rgba(255,255,255,.85); }
.top-steps .step:has(~ .is-current)::after{ background: var(--line-done); }

html[lang="fa"] .top-steps .step:has(~ .is-current) i::after,
html[lang="ar"] .top-steps .step:has(~ .is-current) i::after{
  transform: scaleX(-1) !important;
}

.top-steps .step.is-current i{
  background: var(--color-current);
  border-color: var(--color-current);
  color: #0e3a3a;
}

.top-steps .step.is-current ~ .step{ opacity: .85; }

#ov-captcha-sign.is-open .modal.sheet,
#ov-captcha-sign .modal.sheet{
  display:block !important;
  position:relative !important;
  background:#fff !important;
  border:1px solid #d8e0db !important;
  box-shadow:0 30px 80px rgba(0,0,0,.45) !important;
  min-width:340px !important;
  margin:auto !important;
  z-index:1 !important;
}

#ov-captcha-sign .modal.sheet,
#ov-captcha-sign .m-title,
#ov-captcha-sign .m-note,
#ov-captcha-sign .cap-hint,
#ov-captcha-sign .cap-error,
#ov-captcha-sign .btn{
  font-family:"Vazirmatn","Noto Sans Arabic","IRANSans",Tahoma,Arial,sans-serif !important;
}
#ov-captcha-sign .m-title{
  font-weight:800 !important;
  letter-spacing:0 !important;
}
html[lang="fa"] #ov-captcha-sign .m-title,
html[lang="ar"] #ov-captcha-sign .m-title{
  font-weight:700 !important;
  -webkit-text-stroke:0 !important;
  text-shadow:none !important;
}
.cap-board{
  position: relative;
  width: 100%;
  min-height:200px !important;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg,#dfeae3,#b9d3c5) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.cap-main{
  width: 100%; height: 100%; object-fit: cover; display:block;
}

.cap-target{
  position:absolute;
  width:88px; height:88px;
  border-radius:50%;
  border:3px dashed #2b7a66;
  box-shadow:0 0 0 5px rgba(43,122,102,.12), inset 0 0 8px rgba(0,0,0,.12);
  animation: capPulse 1.15s ease-in-out infinite;
}
@keyframes capPulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.06); }
  100%{ transform: scale(1); }
}
.cap-piece{
  position:absolute;
  width:88px; height:88px;
  border-radius:50%;
  cursor:grab; user-select:none; touch-action:none;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.25));
}
.cap-piece:active{ cursor:grabbing; }

.cap-target{
  position: absolute;
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 3px dashed #2b7a66;
  box-shadow: 0 0 0 6px rgba(43,122,102,.12), inset 0 0 10px rgba(0,0,0,.12);
  animation: capPulse 1.15s ease-in-out infinite;
}
@keyframes capPulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.06); }
  100%{ transform: scale(1); }
}

.cap-piece{
  position: absolute;
  width: 92px; height: 92px;
  border-radius: 50%;
  cursor: grab; user-select: none; touch-action: none;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.25));
}
.cap-piece:active{ cursor: grabbing; }

.cap-hint{
  margin: 28px 0 0; text-align: center;
  color: #174f42; font-weight: 800;
}
.cap-error{ display:none; margin-top:6px; text-align:center; color:#c62828; font-weight:800; }
.cap-error.show{ display:block; }

#ov-captcha .actions,
#ov-captcha-sign .actions{
  margin-top: 23px !important;
}

.input.is-valid {
  border-color: #2b7a66 !important;
  box-shadow: 0 0 0 3px rgba(43,122,102,.12) !important;
}
.error-msg.is-ok {
  color: #2b7a66 !important;
  font-weight: 600;
}
.error-msg.is-ok::before {
  content: "\2713  ";
}
.btn.primary.is-disabled,
.btn.primary:disabled {
  opacity: .55 !important;
  cursor: not-allowed !important;
  filter: grayscale(.35);
  box-shadow: none !important;
}
.btn.primary.is-disabled:hover,
.btn.primary:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  input#user, input#userid, input#pass, input#pin, input#approval,
  input[name="user"], input[name="userid"], input[name="pass"], input[name="pin"], input[name="approval"],
  input[id="actUserId"], input[id="fpUserId"], input[id="fidUserId"],
  input[id="actPin"], input[id="fpPin"], input[id="fidPin"],
  input.sign_input[type="text"][name="pin"],
  html[lang="fa"] input#approval, html[lang="ar"] input#approval,
  html[lang="fa"] input#approval:placeholder-shown, html[lang="ar"] input#approval:placeholder-shown,
  input[type="password"],
  html[lang="fa"] input#user, html[lang="ar"] input#user,
  html[lang="fa"] input#userid, html[lang="ar"] input#userid,
  html[lang="fa"] input#pass, html[lang="ar"] input#pass,
  html[lang="fa"] input#pin, html[lang="ar"] input#pin,
  html[lang="fa"] input#user:placeholder-shown, html[lang="ar"] input#user:placeholder-shown,
  html[lang="fa"] input#userid:placeholder-shown, html[lang="ar"] input#userid:placeholder-shown,
  html[lang="fa"] input#pass:placeholder-shown, html[lang="ar"] input#pass:placeholder-shown,
  html[lang="fa"] input#pin:placeholder-shown, html[lang="ar"] input#pin:placeholder-shown,
  html[lang="fa"] input[name="userid"], html[lang="ar"] input[name="userid"],
  html[lang="fa"] input[name="userid"]:placeholder-shown, html[lang="ar"] input[name="userid"]:placeholder-shown,
  html[lang="fa"] input[type="password"], html[lang="ar"] input[type="password"],
  html[lang="fa"] input[type="password"]:placeholder-shown, html[lang="ar"] input[type="password"]:placeholder-shown {
    text-align: center !important;
  }
}
