@import url("./auth.css");

.signup-page .auth-field:nth-child(1) { animation-delay: 0.15s; }
.signup-page .auth-field:nth-child(2) { animation-delay: 0.2s; }
.signup-page .auth-field:nth-child(3) { animation-delay: 0.25s; }
.signup-page .auth-field:nth-child(4) { animation-delay: 0.3s; }

.signup-page .auth-form-row {
  animation: auth-fade-up 0.5s ease 0.35s both;
}

.signup-page .auth-field:nth-child(6) { animation-delay: 0.4s; }

.signup-page .auth-checkbox {
  animation: auth-fade-up 0.5s ease 0.42s both;
}

.signup-page .auth-submit {
  animation-delay: 0.47s, 0.47s;
}

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

.auth-checkbox span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.auth-checkbox a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-checkbox a:hover {
  color: var(--blue-deep);
}
