/* ============================================================
   app-notify.css — BuddiesSpace "We'll notify you" section
   ============================================================ */

.bs-app-notify {
  background-color: #ffffff;
  border-radius: 42px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  padding: 100px 96px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

/* ── Heading ── */
.bs-app-notify__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.3;
  color: #21254a;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}

/* ── Form row ── */
.bs-app-notify__form {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 0 64px;
  box-sizing: border-box;
}

/* Email field group (label + input stacked) */
.bs-app-notify__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 1 clamp(280px, 51.04vw, 735px);
}

.bs-app-notify__label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.39vw, 20px);
  line-height: 1.55;
  color: #404040;
}

.bs-app-notify__input {
  background-color: #ffffff;
  border: 1px solid #21254a;
  border-radius: 8px;
  height: 56px;
  padding: 0 37px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.39vw, 20px);
  color: #21254a;
  box-shadow: 0 2.67px 5.33px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

.bs-app-notify__input::placeholder {
  color: #aaaaaa;
}

.bs-app-notify__input:focus {
  border-color: #59acf8;
}

/* Submit button */
.bs-app-notify__submit {
  flex-shrink: 0;
  background-color: #59acf8;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.2;
  border: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 8px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.bs-app-notify__submit:hover {
  opacity: 0.88;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bs-app-notify {
    padding: 72px 48px;
    gap: 40px;
  }

  .bs-app-notify__form {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .bs-app-notify {
    padding: 56px 24px;
    border-radius: 24px;
    gap: 32px;
  }

  .bs-app-notify__form {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .bs-app-notify__field {
    flex: unset;
    width: 100%;
  }

  .bs-app-notify__submit {
    width: 100%;
    justify-content: center;
    height: auto;
    padding: 16px 32px;
  }
}
