.auth-method-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f5f3fa;
}

.auth-method-tabs button {
  min-height: 40px;
  border-radius: 10px;
  padding: 9px 12px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}

.auth-method-tabs button.active {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 5px 16px rgba(59, 37, 106, 0.1);
}

.auth-create-account {
  width: 100%;
  margin-top: 15px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #918a9d;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.auth-otp-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 480px) {
  .auth-method-tabs button { padding-inline: 7px; font-size: 11px; }
}
