/* Minimal, page-safe subset of signup.css for embedding SignupPartnerForm
   directly inline on a marketing page (list-with-us), instead of the
   full-page /signup-partner layout. Deliberately excludes signup.css's
   `body { display:flex; ... }`, `.signup-content`, `.signup-left/right`
   (split hero-graphic layout) and the header-dropdown rules, since those
   are authored for the standalone two-column auth page and would bleed
   layout-wide if loaded here. Only the classnames SignupPartnerForm's email
   + code stages actually render are included; the 6-digit code inputs use
   inline styles in the component itself and need no CSS here. */

.signup-form {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signup-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.signup-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #14171c;
}

.signup-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signup-field {
  display: flex;
  flex-direction: column;
}

.signup-error {
  font-size: 12px;
  color: #b42318;
  margin-top: 4px;
}

.signup-input {
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 13px 18px;
  font-family: var(--font-inter), sans-serif;
  font-size: 16px;
  color: #14171c;
  outline: none;
  background: #f3f4f6;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.signup-input:hover {
  background: #eceef1;
}

.signup-input:focus {
  background: #ffffff;
  border-color: #14171c;
}

.signup-input::placeholder {
  color: #9b9b9b;
}

.signup-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.signup-btn {
  width: 100%;
  height: 52px;
  background: #14171c;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-inter), sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.signup-btn:hover {
  background: #2a2e36;
}

.signup-btn:disabled {
  cursor: default;
  opacity: 0.85;
}

.signup-social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.signup-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #14171c;
}

.signup-bottom a {
  color: #14171c;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.signup-bottom a:hover {
  text-decoration-thickness: 2px;
  opacity: 0.7;
}

@media (max-width: 480px) {
  .signup-title {
    font-size: 26px;
  }
  .signup-input {
    padding: 14px 16px;
  }
}
