.auth-btn-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .auth-btn-wrapper iframe {
    width: 48px !important;
    height: 48px !important;
    border-radius: 10px;
  }

  .auth-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  #passwordHints { margin-left: .25rem; }
#passwordHints .req {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.35;
  color: #dc3545;            /* красный по умолчанию */
}
#passwordHints .req::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0.05rem);
  font-weight: 700;
}
#passwordHints .req.ok { color: #198754; }    /* зелёный при выполнении */
#passwordHints .req.ok::before { content: "✓"; }


.auth-warning{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #ff9800;          /* оранжевый фон */
  color: #1b1b1b;               /* тёмный текст */
  border: 2px solid #f57c00;    /* ОРАНЖЕВАЯ РАМКА */
  border-radius: 12px;
  padding: 10px 16px;
  max-width: 360px;
  text-align: center;

  box-shadow: 0 6px 16px rgba(0,0,0,.12); /* лёгкая тень */
}

.auth-warning .material-symbols-rounded{
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  font-size: 20px;
  line-height: 1;
}

