:root {
  --green-neon: #3dffbb;
  --green-dark: #03241a;
  --black: #010602;
  --text-light: #f6fff9;
  --text-muted: rgba(246, 255, 249, 0.7);
  --border: rgba(61, 255, 187, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(61, 255, 187, 0.12), transparent 40%), #020b07;
  color: var(--text-light);
  min-height: 100vh;
}

.cadastro-shell {
  min-height: 100vh;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.cadastro-panel,
.cadastro-info {
  background: rgba(2, 6, 3, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(61, 255, 187, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(61, 255, 187, 0.1);
}

.cadastro-panel {
  position: relative;
  overflow: hidden;
}

.cadastro-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(61, 255, 187, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.brand {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(61, 255, 187, 0.3);
}

.brand h1 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-neon), #1abc9c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand p {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.field-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
}

label span {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input,
select {
  border: 1px solid rgba(61, 255, 187, 0.2);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  transition: all 0.3s ease;
}

input::placeholder {
  color: rgba(246, 255, 249, 0.4);
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--green-neon);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(61, 255, 187, 0.2),
              inset 0 1px 3px rgba(61, 255, 187, 0.1);
}

select {
  cursor: pointer;
}

select option {
  background: #010602;
  color: var(--text-light);
}

button {
  border: none;
  border-radius: 999px;
  padding: 1.2rem 2rem;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: inherit;
  background: linear-gradient(135deg, var(--green-neon), #1abc9c);
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(61, 255, 187, 0.4);
  margin-top: 0.5rem;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(61, 255, 187, 0.5);
}

button:active {
  transform: translateY(0);
}

.form-feedback {
  min-height: 1.5rem;
  color: #ffd93d;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.helper {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.helper strong {
  color: var(--green-neon);
}

.small-note {
  text-align: center;
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.small-note a {
  color: var(--green-neon);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.small-note a:hover {
  color: #1abc9c;
  text-decoration: underline;
}

.cadastro-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cadastro-info h2 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--green-neon);
  font-weight: 700;
  line-height: 1.3;
}

.cadastro-info > p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.info-grid {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.info-grid article {
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.08), rgba(61, 255, 187, 0.04));
  padding: 1.2rem;
  border-radius: 1.2rem;
  border-left: 3px solid var(--green-neon);
  transition: all 0.3s ease;
}

.info-grid article:hover {
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.15), rgba(61, 255, 187, 0.08));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 255, 187, 0.15);
}

.info-grid strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--green-neon);
  font-size: 1.05rem;
  font-weight: 700;
}

.info-grid span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cta-box {
  background: linear-gradient(135deg, rgba(61, 255, 187, 0.15), rgba(3, 36, 26, 0.5));
  border: 2px solid var(--green-neon);
  border-radius: 1.2rem;
  padding: 2rem;
  margin-top: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(61, 255, 187, 0.2);
}

.cta-title {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-neon);
}

.cta-text {
  margin: 0;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .cadastro-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 720px) {
  .cadastro-shell {
    padding: 2rem 1.5rem;
  }

  .cadastro-panel,
  .cadastro-info {
    padding: 2rem;
  }

  .brand h1 {
    font-size: 1.6rem;
  }

  .field-group {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cadastro-shell {
    padding: 1.5rem 1rem;
  }

  .cadastro-panel,
  .cadastro-info {
    padding: 1.5rem;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand h1 {
    font-size: 1.4rem;
  }

  .cadastro-info h2 {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.3rem;
  }
}
