.password-shell {
  min-height: calc(100vh - 14rem);
  display: flex;
  align-items: center;
}

.password-card {
  border: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 3rem rgba(var(--brand-red-rgb), 0.16);
}

.password-aside {
  background:
    linear-gradient(160deg, var(--brand-red-800), var(--brand-red-400)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  color: #fff;
  position: relative;
}

.password-aside::after {
  content: "";
  position: absolute;
  inset: auto -15% -25% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.password-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.password-form-panel {
  background: #fff;
}

.password-form-panel .form-control {
  min-height: 3rem;
}

.password-form-panel .alert {
  border-radius: 1rem;
}

.password-info {
  padding: 1rem 1.1rem;
  border: 1px solid var(--brand-red-100);
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    rgba(var(--brand-red-rgb), 0.08),
    rgba(var(--brand-red-rgb), 0.02)
  );
}

.password-info-title {
  color: var(--brand-red-900);
  font-weight: 600;
}

.password-checklist {
  padding-left: 1.25rem;
  color: #6c757d;
}

.password-checklist li + li {
  margin-top: 0.5rem;
}

.password-actions {
  display: grid;
  gap: 0.75rem;
}
