.auth-wrap {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-card { width: 100%; max-width: 420px; }
.auth-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.auth-header h2 { margin: 0; }
.brand-badge {
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent, #2563eb);
  color: #fff;
  font-size: 13px;
}
.field { margin-top: 14px; }
.pwd-wrapper { position: relative; }
.pwd-wrapper input { padding-right: 44px; }
.pwd-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  opacity: 0.6;
}
.pwd-toggle:hover { opacity: 1; }
.icon-eye { width: 20px; height: 20px; fill: currentColor; }
.actions { margin-top: 20px; display: flex; justify-content: flex-end; }
.alert.alert-danger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fef2f2;
  color: #7f1d1d;
  border: 1px solid #fecaca;
  border-left: 5px solid #dc2626;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 14px;
}
.alert-icon {
  width: 22px;
  height: 22px;
  fill: #dc2626;
}
#pwd.is-error {
  border-color: #dc2626 !important;
  background: #fff5f5;
}
