/* Our additions to the sign-in and sign-up pages. */
.accounts-alert {
  max-width: 600px;
  margin: 16px auto 0;
  text-align: center;
  animation: accounts-drop 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes accounts-drop {
  from { transform: translateY(-16px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.accounts-disclaimer {
  clear: both;
  margin: 12px 0 0;
  font-size: 11px;
  color: #999;
}
.accounts-terms {
  font-size: 12px;
  color: #666;
}
.accounts-closed {
  font-size: 15px;
  color: #444;
}
.form-error input[type=text],
.form-error input[type=password] {
  border-color: #dd4b39;
}
.cf-turnstile {
  margin-bottom: 12px;
}
@media (prefers-reduced-motion: reduce) {
  .accounts-alert { animation: none; }
}
