.body_dashboard { display: flex !important; }
.hero { display: flex; flex-direction: column; justify-content: flex-end; min-width: 0; width: 100%; justify-self: center; }
.brand { width: fit-content; margin-bottom: 24px; margin-left: 110px; }
.brand svg { display: block; width: min(100%, 280px); height: auto; }
.brand-line { width: 130px; height: 4px; background: var(--accent); margin-bottom: 18px; margin-left: 110px; }

.stage {
  width: 100vw;
  min-height: 100vh;
  background-color: var(--panel-bg);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 54px 56px 0;
  overflow: hidden;
}

.hero h1 {
  margin: 0 0 0 110px;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 0.98;
  font-weight: 800;
  font-family: "Montserrat Bold", Arial, sans-serif;
  text-transform: uppercase;
}

.hero h1 .accent { color: var(--accent); }
.hero-image { margin-top: 50px; max-width: 900px; object-fit: contain; object-position: left bottom; filter: saturate(1.02); }

.auth-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
  padding-right: 250px;
}

.auth-title {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.05;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Montserrat Bold", Arial, sans-serif;
}

.auth-card {
  width: min(100%, 500px);
  background: var(--card-bg);
  border: 1px solid rgba(127, 126, 207, 0.42);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.22);
  font-family: "Inter", Arial, sans-serif;
}

.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; }

.auth-tab {
  border: 0;
  background: var(--card-bg-strong);
  color: var(--muted);
  padding: 18px 12px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.auth-tab.active { background: transparent; color: var(--accent); }
.form-panel { display: none; padding: 24px 24px 20px; }
.form-panel.active { display: block; }
.field { margin-bottom: 14px; }
.field label { display: block; margin-bottom: 8px; font-size: 0.82rem; color: #d9d7ef; }

.field input {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.field input::placeholder { color: #9d9ac5; }
.password-input { position: relative; }
.password-input input { padding-right: 44px; }

.eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 0;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: #c8c4f1;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 9px;
  margin-top: 4px;
  background: var(--accent);
  color: #06111d;
  font-weight: 800;
  cursor: pointer;
}

.aux-link {
  display: block;
  margin-top: 16px;
  color: #c7c4e7;
  text-align: center;
  font-size: 0.82rem;
  text-decoration: none;
}

.criteria { margin: 8px 0 14px 20px; padding: 0; list-style: none; display: grid; gap: 8px; }
.criteria li { display: flex; align-items: center; gap: 10px; color: #d0cee9; font-size: 0.81rem; }
.criteria .status { font-weight: 700; font-size: 0.9rem; }
.criteria .ok { color: var(--ganho); }
.criteria .no { color: var(--perda); }

.auth-note {
  width: min(100%, 420px);
  margin: 18px 0 0;
  color: #d8d5ee;
  opacity: 0.85;
  font-size: 0.75rem;
  line-height: 1.55;
  text-align: center;
}

input.invalid { border-color: #e53935; }

@media (max-width: 980px) {
  .stage { grid-template-columns: 1fr; padding: 38px 24px 0; }
  .hero { align-items: center; text-align: center; }
  .brand-line { margin-inline: auto; }
  .hero h1 { max-width: 580px; }
  .hero-image { width: min(100%, 500px); }
  .auth-wrap { padding-bottom: 34px; }
}

@media (max-width: 640px) {
  .stage { gap: 18px; padding: 26px 16px 0; }
  .auth-title { font-size: 1.8rem; }
  .form-panel { padding: 20px 16px 18px; }
  .hero h1 { font-size: 2rem; }
}