/* ============================================================
   auth.truthly.ai — V2 Liquid Glass: Sign-Up Screens
   Supplements styles-v2.css with styles for screens #2–#5, #15–#16
   ============================================================ */

/* --- Checkbox (Age Gate) --- */
.v2-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--v2-space-s);
  cursor: pointer;
  padding: var(--v2-space-xs) 0;
  width: 100%;
}

.v2-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid var(--v2-border-subtle);
  border-radius: 4px;
  background: var(--v2-bg-sunken);
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.v2-checkbox:checked {
  background: linear-gradient(180deg, #175e9c 0%, #114f88 100%);
  border-color: #175e9c;
}

.v2-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--v2-text-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.v2-checkbox:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.2);
  outline-offset: 2px;
}

.v2-checkbox-label {
  font-family: var(--v2-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--v2-text-subtle);
  user-select: none;
}

/* --- Password Hint --- */
.v2-password-hint {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--v2-text-subtle);
  margin: -8px 0 0 var(--v2-space-m);
}

/* --- Verify Email Landing — Status Container --- */
.v2-verify-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--v2-space-m);
  padding: var(--v2-space-l) 0;
}

.v2-verify-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Verify Email — Status Icons --- */
.v2-verify-icon {
  display: none;
  align-items: center;
  justify-content: center;
  animation: v2-fadeIn 0.3s ease-out;
}

.v2-verify-icon-success {
  color: #4ade80;
}

.v2-verify-icon-error {
  color: #ff6b6b;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .v2-verify-icon {
    animation: none;
  }
}
