:root {
  --bg1: #0b1220;
  --bg2: #101a2e;
  --card: rgba(255, 255, 255, .10);
  --card2: rgba(255, 255, 255, .06);
  --stroke: rgba(255, 255, 255, .14);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .70);
  --muted2: rgba(255, 255, 255, .55);
  --orange: #ff7a18;
  --orange2: #ffb26a;
  --shadow: 0 30px 90px rgba(0, 0, 0, .45);
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(255, 122, 24, .20), transparent 55%),
    radial-gradient(900px 700px at 80% 30%, rgba(94, 234, 212, .16), transparent 55%),
    radial-gradient(900px 700px at 70% 90%, rgba(59, 130, 246, .14), transparent 55%),
    linear-gradient(120deg, var(--bg1), var(--bg2));
  overflow-x: hidden;
}

.alert {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: 14px;
  color: var(--text);
  font-weight: 600;
  z-index: 10;
  align-items: center;
  gap: 12px;
}

/* Noise overlay (dá cara premium) */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .18;
}

/* Decorative blobs */
.blob {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .35;
  z-index: 0;
  transform: translateZ(0);
}

.blob.b1 {
  left: -120px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 122, 24, .9), rgba(255, 122, 24, 0));
}

.blob.b2 {
  right: -140px;
  top: 80px;
  background: radial-gradient(circle at 30% 30%, rgba(94, 234, 212, .8), rgba(94, 234, 212, 0));
}

.blob.b3 {
  left: 20%;
  bottom: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, .7), rgba(59, 130, 246, 0));
}

/* Layout */
.wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
}

.shell {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Left slide panel */
.slides {
  position: relative;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 122, 24, .95), rgba(255, 178, 106, .9));
  box-shadow: 0 14px 40px rgba(255, 122, 24, .25);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #1a120a;
  letter-spacing: -.5px;
  user-select: none;
}

.brand h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.3px;
  font-weight: 400;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted2);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2px;
}

.slideArea {
  margin-top: 26px;
  max-width: 520px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, .15);
}

.slideTitle {
  margin: 18px 0 10px;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.slideText {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
}

.bullets {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 12px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  padding: 8px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(94, 234, 212, .9);
  box-shadow: 0 0 0 6px rgba(94, 234, 212, .12);
  display: inline-block;
}

.slideNav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.progress {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
}

.bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), rgba(94, 234, 212, .85));
  border-radius: 999px;
  transition: width .1s linear;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 0;
  background: rgba(255, 255, 255, .22);
  cursor: pointer;
  padding: 0;
  transition: transform .15s ease, background .15s ease;
}

.dots button.active {
  background: rgba(255, 255, 255, .75);
  transform: scale(1.2);
}

/* Right login panel */
.login {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.loginHeader h2 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -.6px;
}

.loginHeader p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.tabs {
  display: flex;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .10);
  width: fit-content;
  margin-bottom: 18px;
  text-decoration: none;
}

.tab {
  border: 0;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, .65);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}

.tab.active {
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .92);
}

.tab a {
  text-decoration: none !important;
  color: inherit !important;
}

.field {
  margin-top: 12px;
}

.label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
  letter-spacing: .2px;
}

.input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 14px 14px;
  color: rgba(255, 255, 255, .92);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}

.input::placeholder {
  color: rgba(255, 255, 255, .45);
  font-weight: 600;
}

.input:focus {
  border-color: rgba(255, 122, 24, .55);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, .10);
}

.row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  color: rgba(255, 255, 255, .70);
  font-size: 13px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.check input {
  accent-color: var(--orange);
}

.btn {
  margin-top: 16px;
  width: 100%;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
  color: #1a120a;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  box-shadow: 0 16px 40px rgba(255, 122, 24, .20);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .12s ease, filter .12s ease;
}

.btn:hover {
  filter: brightness(1.02);
}

.btn:active {
  transform: translateY(1px);
}

.hint {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .62);
}

.hint a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  font-weight: 700;
}

.hint a:hover {
  text-decoration: underline;
}

.divider {
  margin: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

/* Slide animations */
.fade {
  animation: fadeUp .55s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .slides {
    min-height: auto;
  }

  .login {
    min-height: auto;
  }
}

@media (max-width: 520px) {

  .slides,
  .login {
    padding: 22px;
  }

  .slideTitle {
    font-size: 30px;
  }

  .brand h1 {
    font-size: 18px;
  }
}

/* MOBILE: esconder painel de slides e deixar login ocupar tudo */
@media (max-width: 980px) {
  .shell {
    grid-template-columns: 1fr;
    /* garante 1 coluna */
  }

  .slides {
    display: none !important;
    /* some o slide */
  }

  .login {
    min-height: 60vh;
    /* login centralizado no alto da página */
  }
}

/* Ajuste extra para telas bem pequenas */
@media (max-width: 520px) {
  .login {
    padding: 22px;
    /* mantém espaçamento bom */
  }
}

.grecaptcha-badge {
  visibility: hidden !important;
}