:root {
  --ok: #16b44b;
  --warn: #ff7c10;
  --bad: #dd0202;
  --muted: #6b7280;
}

#passwordcheck-passwckfc {
    margin: 35px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1.passwckfc {
  font-size: clamp(28px, 4vw, 28px);
  margin: 0 0 24px;
}

.card-passwckfc {
  background: #f8f8f8;
  border: 1px solid #2a2f3a;
  border-radius: 16px;
  padding: 20px;
  max-width: 640px;
}

.row-passwckfc {
  margin: 14px 0;
}

label.passwckfc {
  display: block;
  margin-bottom: 8px;
  color: #3d3d3d;
}

.input-wrap-passwckfc {
  position: relative;
}

input[type="password"].passwckfc {
  width: 100%;
  padding: 14px 44px 14px 14px;
  border: 1px solid #2a2f3a;
  border-radius: 10px;
  background: #ffffff;
  color: #272727;
  outline: none;
  box-sizing: border-box;
}

.pill-passwckfc.hidden-passwckfc {
  display: none !important;
}

.toggle-passwckfc {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
}

.muted-passwckfc {
  color: #313131;
  font-size: 14px;
}

.divider-passwckfc {
  border-top: 1px solid #2a2f3a;
  margin: 16px 0;
}

.pill-passwckfc {
  display: inline-block;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 999px;
}

.pill-passwckfc.bad-passwckfc {
  background: #ffc8c8;
  color: var(--bad);
}

.pill-passwckfc.warn-passwckfc {
  background: #fffbc9;
  color: var(--warn);
}

.pill-passwckfc.ok-passwckfc {
  background: #dbffe7;
  color: var(--ok);
  font-weight: bold;
}

.criteria-passwckfc {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.criteria-passwckfc li {
  margin: 6px 0;
}

.ok-passwckfc {
  color: var(--ok);
  font-weight: 600;
}

.bad-passwckfc {
  color: var(--bad);
  font-weight: 600;
}

.warn-passwckfc {
  color: var(--warn);
  font-weight: 600;
}

.badge-passwckfc {
  font-weight: 600;
}

.box-passwckfc {
  border: 1px solid #2a2f3a;
  border-radius: 10px;
  padding: 12px;
  background: #ffffff;
}

.box-passwckfc.alert-passwckfc {
  border-color: #2a2f3a;
  background: #ffffff;
}

.grid-passwckfc {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 560px) {
  .grid-passwckfc {
    grid-template-columns: 1fr;
  }
}

.foot-passwckfc {
  color: #22c55e;
  margin-top: 18px;
  font-weight: 600;
}