:root{
  --bg: #07070b;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --stroke: rgba(255,255,255,0.12);

  --white: #ffffff;
  --text: rgba(255,255,255,0.96);
  --muted: rgba(255,255,255,0.88);

  --pink: #ff3bbd;
  --yellow: #ffe34a;
  --black: #000000;

  --radius: 22px;
  --shadow: 0 24px 80px rgba(0,0,0,0.55);
  --shadow2: 0 10px 30px rgba(0,0,0,0.35);
  --ring: 0 0 0 6px rgba(255,59,189,0.18);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: 
              linear-gradient(180deg, #06060a 0%, #040409 100%);
  overflow-x: hidden;
}



.wrap{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.card{
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.card__left{
  padding: 34px 34px 26px;
  position: relative;
}

.card__left::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(255,59,189,0.20), transparent 55%),
    radial-gradient(800px 500px at 80% 25%, rgba(255,227,74,0.16), transparent 55%);
  opacity: 0.65;
  pointer-events: none;
}

.brand{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.20);
  box-shadow: var(--shadow2);
  width: fit-content;
}

.logo__mark{
  width: 42px; height: 42px;
  border-radius: 14px;
  object-fit: contain;
  display: block;
}

.logo__text{
  line-height: 1.05;
  letter-spacing: 0.6px;
}

.logo__line1{
  font-weight: 900;
  font-size: 15px;
}

.logo__line2{
  font-weight: 700;
  font-size: 11px;
  color: var(--muted);
}

.headline h1{
  margin: 0;
  font-size: clamp(28px, 3.3vw, 40px);
  letter-spacing: -0.6px;
}

.headline p{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 48ch;
}

.badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.badge{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.94);
  font-size: 12.5px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}

.footer-note{
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.90);
  font-size: 12.5px;
}

.dot{
  width: 10px; height: 10px;
  border-radius: 99px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,227,74,0.12);
}

.card__right{
  padding: 18px;
  background: rgba(0,0,0,0.26);
  border-left: 1px solid rgba(255,255,255,0.10);
}

.tabs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.tab{
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,0.94);
  font-weight: 800;
  letter-spacing: 0.2px;
  background: transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.tab:hover{ transform: translateY(-1px); }
.tab.is-active{
  background: linear-gradient(135deg, rgba(255,59,189,0.32), rgba(255,227,74,0.24));
  box-shadow: 0 10px 26px rgba(255,59,189,0.10);
  color: var(--white);
  outline: 1px solid rgba(255,255,255,0.12);
}

.form{
  margin-top: 14px;
  padding: 18px 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.form__title h2{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.form__title p{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.field{
  margin-top: 14px;
  display: grid;
  gap: 7px;
}

label{
  font-size: 12px;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}

input:focus{
  border-color: rgba(255,59,189,0.45);
  box-shadow: var(--ring);
}

.password-wrap{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.pw-toggle{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.94);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  transition: transform .15s ease, background .15s ease;
}
.pw-toggle:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.08); }

.hint{
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

.row{
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.check{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-size: 12.5px;
  color: rgba(255,255,255,0.92);
}
.check input{ width: 16px; height: 16px; }

.link{
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,227,74,0.95);
  cursor: pointer;
  font-weight: 800;
  font-size: 12.5px;
  padding: 0;
  text-decoration: none;
}
.link:hover{ text-decoration: underline; }

.btn{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 14px;
  margin-top: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn--primary{
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  color: #0b0b10;
  box-shadow: 0 16px 40px rgba(255,59,189,0.16);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--primary:active{ transform: translateY(0px); }

.btn__spark{
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,0.45), transparent 30%),
    radial-gradient(circle at 60% 55%, rgba(255,255,255,0.25), transparent 35%);
  transform: rotate(12deg);
  opacity: 0.35;
  pointer-events: none;
}

.btn--ghost{
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.96);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  background: rgba(0,0,0,0.24);
}

.btn[disabled]{
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.or{
  display: grid;
  place-items: center;
  margin-top: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  position: relative;
}
.or::before, .or::after{
  content:"";
  position:absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: rgba(255,255,255,0.10);
}
.or::before{ left: 0; }
.or::after{ right: 0; }

.status{
  margin-top: 12px;
  min-height: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.92);
}
.status.is-error{ color: rgba(255,120,120,0.95); }
.status.is-success{ color: rgba(120,255,170,0.95); }

.tiny{
  margin-top: 10px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

@media (max-width: 920px){
  .card{ grid-template-columns: 1fr; }
  .card__right{ border-left: 0; border-top: 1px solid rgba(255,255,255,0.10); }
  .card__left{ padding: 26px 22px; }
}
