/* Hostinger-welcome style theme (adapted) */
:root{
  --bg:#F4F5FF;
  --nav:#36344D;
  --text:#1f2330;
  --mut:#727586;
  --line:#E2E6F6;
  --card:#ffffff;

  --pri:#673DE6;   /* Hostinger purple */
  --pri2:#7A52FF;
  --pri3:#5630D8;

  --radius:18px;
  --shadow: 0 18px 60px rgba(18, 20, 38, .10);
  --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: var(--bg);
}

/* Global layout */
.container{ width:min(1120px,100%); margin:0 auto; padding: 0 18px; }

/* NAV (header) */
.topbar{
  width:100%;
  background: var(--nav);
}
.nav{
  height:72px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:12px;
  color:#fff;
}
.brandMark{
  width:38px; height:38px; border-radius:12px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.28), transparent 46%),
              linear-gradient(135deg, var(--pri), var(--pri2));
  box-shadow: 0 12px 30px rgba(103, 61, 230, .25);
}
.brandText .name{ font-weight:800; letter-spacing:.2px; line-height:1; }
.brandText .tag{ font-size:12px; opacity:.78; margin-top:4px; }

.navLinks{ display:flex; align-items:center; gap:10px; }
.navLink{
  color:#fff;
  opacity:.92;
  font-weight:700;
  font-size:13.5px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.navLink:hover{ background: rgba(255,255,255,.10); }

/* Main content */
.page{
  min-height: calc(100vh - 72px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 26px 0 34px;
}

.card{
  width:min(980px, 100%);
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.cardInner{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0;
}
@media (max-width: 880px){
  .cardInner{ grid-template-columns: 1fr; }
}

/* Left “illustration/hero” side */
.heroSide{
  position:relative;
  padding: 26px 24px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(103,61,230,.10), transparent 60%),
    radial-gradient(800px 360px at 90% 40%, rgba(103,61,230,.08), transparent 60%),
    #fff;
  border-right:1px solid var(--line);
}
@media (max-width: 880px){
  .heroSide{ border-right:none; border-bottom:1px solid var(--line); }
}

.hTitle{
  margin: 8px 0 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .2px;
  text-align:left;
}
.hSub{
  margin:0;
  max-width: 56ch;
  color: var(--mut);
  font-size: 15px;
  line-height: 1.55;
}
.badges{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(244,245,255,.70);
  font-size: 12.5px;
  color: #4a4f63;
}
.badgeDot{
  width:8px;height:8px;border-radius:999px;
  background: var(--pri);
  box-shadow:0 0 0 5px rgba(103,61,230,.12);
}

/* Simple “contract” illustration (pure CSS/SVG feel) */
.contractArt{
  margin-top: 16px;
  border:1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(244,245,255,.55), rgba(255,255,255,1));
  padding: 14px;
  max-width: 520px;
}
.contractRow{ height:10px; background: rgba(103,61,230,.12); border-radius:999px; margin: 10px 0; }
.contractRow.sm{ width: 62%; opacity:.9; }
.contractRow.md{ width: 78%; opacity:.8; }
.contractRow.lg{ width: 92%; opacity:.7; }
.signLine{
  display:flex; gap:10px; align-items:center; margin-top: 14px;
}
.signBox{
  flex:1;
  height:44px;
  border-radius: 12px;
  border:1px dashed rgba(103,61,230,.35);
  background: rgba(244,245,255,.55);
}

/* Right form side */
.formSide{
  padding: 22px;
  background: #fff;
}

label{
  display:block;
  color: var(--mut);
  font-size: 13px;
  margin: 10px 0 6px;
}
input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  outline:none;
  font-family: var(--font);
  font-size: 14.5px;
  background: #fff;
  transition: box-shadow .18s ease, border-color .18s ease;
}
input:focus{
  border-color: rgba(103,61,230,.38);
  box-shadow: 0 0 0 6px rgba(103,61,230,.12);
}

/* Buttons with spotlight (cursor tracking) */
.btn{
  position:relative;
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(103,61,230,.22);
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  cursor: none; /* cursor-effect uchun */
  user-select:none;
  overflow:hidden;
  transition: transform .08s ease, filter .15s ease;
  color:#fff;
  background: linear-gradient(135deg, var(--pri), var(--pri2));
  box-shadow: 0 14px 34px rgba(103,61,230,.18);
}

/* spotlight layer */
.btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(120px 120px at var(--mx, 50%) var(--my, 50%),
      rgba(255,255,255,.42),
      rgba(255,255,255,0) 60%);
  opacity:0;
  transition: opacity .12s ease;
  pointer-events:none;
}
.btn:hover::before{ opacity:1; }
.btn:active{ transform: translateY(1px) scale(.995); }

.btn.ghost{
  background: rgba(244,245,255,.65);
  color: var(--pri);
  border: 1px solid rgba(103,61,230,.20);
  box-shadow:none;
}
.btn.ghost::before{
  background:
    radial-gradient(120px 120px at var(--mx, 50%) var(--my, 50%),
      rgba(103,61,230,.18),
      rgba(103,61,230,0) 62%);
}

/* small links */
.kicker{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  color: var(--mut);
  font-size: 13px;
}
.kicker a{
  color: var(--pri);
  font-weight: 800;
}
.kicker a:hover{ text-decoration: underline; }

/* message box */
.msg{
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(244,245,255,.70);
  color: #4a4f63;
  font-size: 13.5px;
}
.msg.ok{ border-color: rgba(103,61,230,.22); }
.msg.bad{ border-color: rgba(255,70,70,.22); background: rgba(255,70,70,.06); }

/* Footer */
.footer{
  padding: 18px 0 26px;
  color: #ffffffcc;
  background: var(--nav);
}
.footerGrid{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  font-size: 12.8px;
}
.footer a{ color:#fff; font-weight:800; opacity:.95; }
.footer a:hover{ text-decoration: underline; }

/* Cursor follower (always) */
#cursorDot{
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--pri);
  box-shadow: 0 0 0 10px rgba(103,61,230,.12);
  transform: translate(-50%,-50%);
  pointer-events:none;
  z-index: 99999;
  opacity: 1;
}
#cursorRing{
  position: fixed;
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(103,61,230,.25);
  transform: translate(-50%,-50%);
  pointer-events:none;
  z-index: 99998;
  opacity: 1;
  transition: width .08s ease, height .08s ease, border-color .15s ease;
}
.cursorDown #cursorRing{
  width: 28px; height: 28px;
  border-color: rgba(103,61,230,.45);
}
