/* Keep auth pages email-only and remove phone-link prompt (no layout changes). */

/* Hide "Telefon numarası bağla" / link identifier entrypoint anywhere */
a[href*="link_identifier"],
a[href*="linkIdentifier"],
a[href*="/auth/link"] {
  display: none !important;
}

/* Hide the whole line that contains that link (common structure on auth pages) */
p:has(a[href*="link_identifier"]),
p:has(a[href*="/auth/link"]) {
  display: none !important;
}

/* Signup: hide phone tab and phone field if they appear */
.auth-tabs .auth-tab:nth-child(2) {
  display: none !important;
}

/* Hide phone input field by name attribute */
input[name="phone"],
input[name="countryCode"] {
  display: none !important;
}

/* Common wrappers around phone input */
.signup-input,
.phone-input,
.phone-input-wrapper {
  display: none !important;
}

