/* Shared layout for Cadastro + Meus Dados */

.account-page {
  padding-top: 0;
}

.account-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 14px;
}

.account-shell {
  width: min(940px, 100%);
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.account-shell__row {
  align-items: stretch;
}

.account-side {
  background: var(--gradient-primary);
  color: #fff;
  padding: 30px 26px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 320px at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(520px 280px at 70% 70%, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.account-side > * {
  position: relative;
}

.account-side__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 0.78rem;
}

.account-side__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.25));
}

.account-side__title {
  margin-top: 2px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.account-side__subtitle {
  opacity: 0.92;
  margin-top: -4px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.account-side__bullets {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.account-side__bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 650;
  font-size: 0.9rem;
  line-height: 1.35;
}

.account-side__bullet i {
  opacity: 0.9;
  margin-top: 2px;
}

.account-main {
  padding: 28px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-main__inner {
  width: min(560px, 100%);
}

.account-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.account-top__heading {
  margin: 0;
  font-weight: 900;
  color: var(--primary-color);
}

.account-top__hint {
  color: var(--muted-color);
  margin-top: 4px;
  font-size: 0.92rem;
}

.account-section {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.account-section__title {
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-section__title i {
  color: var(--secondary-color);
}

.account-actions {
  margin-top: 16px;
}

.account-form .form-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark-color);
}

.account-form .form-control,
.account-form .form-select {
  border-radius: 12px;
  border: 1px solid rgba(46, 58, 47, 0.16);
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
}

.account-form .form-control:focus,
.account-form .form-select:focus {
  border-color: rgba(3, 161, 98, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(3, 161, 98, 0.12);
}

.account-muted {
  color: var(--muted-color);
  font-size: 0.9rem;
}

.account-divider {
  height: 1px;
  background: var(--border-color);
  margin: 14px 0;
}

@media (max-width: 991px) {
  .account-main {
    padding: 22px 18px;
    align-items: stretch;
  }
  .account-side {
    padding: 22px 20px;
  }
}
