/* /var/www/psat/public/css/mfa.css */

.mfa-box {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(55, 65, 81, 0.6);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
}

.mfa-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mfa-subtitle {
  font-size: 12px;
  opacity: 0.9;
}

.mfa-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 14px 0 6px;
}

.ring {
  width: 86px;
  height: 86px;
  position: relative;
}

.ring-svg {
  width: 86px;
  height: 86px;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(148, 163, 184, 0.25);
  stroke-width: 4;
}

.ring-fg {
  fill: none;
  stroke: rgba(56, 189, 248, 1);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 113.097; /* 2*pi*r (r=18) */
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.mfa-timer-hint {
  font-size: 11px;
  opacity: 0.75;
}

.mfa-resend-hint {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.75;
  text-align: center;
}
