/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1D1D1F;
  line-height: 1.6;
}

/* CENTER CONTAINER */
.center-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

/* BRAND (no flags here) */
.form-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1D1D1F;
  margin-bottom: 1rem;
}

/* TITLES & SUBTITLE */
.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}
.form-subtitle {
  font-size: 1rem;
  color: #666;
  text-align: center;
  max-width: 400px;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* FORM WRAPPER */
.form-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* FORM FIELDS (Stripe-like) */
.onboarding-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #333;
}
.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s;
}
.form-group input {
  height: 44px; /* ~Stripe field height */
}
.form-group textarea {
  min-height: 90px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #002868;
}

/* CHECKBOX */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.form-check input[type="checkbox"] {
  margin-top: 0.2rem;
}
.form-check a {
  color: #002868;
  text-decoration: underline;
}

/* SUBMIT BUTTON WITH MORE ROUNDED CORNERS */
.btn-submit {
  height: 44px;
  background: #002868;
  color: #fff !important;
  padding: 0 1.4rem;
  border-radius: 2rem; /* increased rounding */
  border: 1px solid #002868;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.btn-submit:hover {
  background: #fff;
  color: #002868 !important;
}
