/* ==============================
   OG SMS Signup — match LeadGen form styles
   (checkbox styles intentionally omitted)
================================ */

/* Wrapper (you can tweak margin here as needed) */
.og-sms-reserve {
  width: 100%;
  margin: 0; /* template layout is handled by surrounding grid */
}

/* Form container: template form has no card background/border */
.og-sms-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* Rows: spacing similar to template’s blocks */
.og-sms-row {
  margin: 0 0 1rem 0; /* roughly matches mb-4 patterns */
}

/* Labels: template doesn’t emphasize labels much; keep readable */
.og-sms-label {
  display: block;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: #ffffff; /* template text is white */
}

/* Inputs: match template inputs
   - border
   - rounded
   - py-4 px-3
   - focus shadow-lg shadow-black/50
*/
.og-sms-input,
.og-sms-email {
  display: block;
  width: 100%;
  box-sizing: border-box;

  border: 1px solid rgba(255, 255, 255, 0.35); /* “border border-solid” on dark bg */
  border-radius: 0.25rem; /* rounded */

  padding: 1rem 0.75rem; /* py-4 px-3 */
  line-height: 1.25;

  background: #ffffff; /* template sits on dark section */
  color: #000000;

  outline: none;
}

/* Placeholder tone similar to template on dark background */
.og-sms-input::placeholder,
.og-sms-email::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

/* Focus style: “focus:shadow-lg focus:shadow-black/50” */
.og-sms-input:focus,
.og-sms-email:focus {
  outline: none;
  box-shadow: 0 10px 15px rgba(0,0,0,0.30), 0 4px 6px rgba(0,0,0,0.25);
  border-color: rgba(255, 255, 255, 0.60);
}

/* If your plugin renders phone+email in separate rows and you still want
   the “side-by-side on md+” behavior, this ONLY works if both inputs share a wrapper.
   If your markup has a container (e.g. .og-sms-fields / .og-sms-input-group), target it here.
   Uncomment and adjust the selector to the real wrapper in your plugin output.

@media (min-width: 768px) {
  .og-sms-form .og-sms-input-group {
    display: flex;
    gap: 1rem;        // gap-4
  }
  .og-sms-form .og-sms-input-group .og-sms-row {
    margin-bottom: 1rem;
    flex: 1;
  }
}
*/

.og-sms-button {
  display: block;              /* behaves like a full-width button */
  width: 100%;                 /* w-full */
  cursor: pointer;             /* cursor-pointer */

  margin: 1rem 0;              /* my-4 */
  padding-left: 2rem;          /* px-8 */
  padding-right: 2rem;
  padding-top: 1.25rem;        /* pt-5 */
  padding-bottom: 0.875rem;    /* pb-3.5 */

  border: 0;
  border-radius: 5px;          /* rounded-[5px] */

  font-weight: 900;            /* font-black */
  font-size: 20px!important;             /* text-[20px] */
  line-height: 1;              /* leading-none */
  text-transform: uppercase;   /* uppercase */

  background-color: #87EB4F!important;         /* bg-[#87EB4F] */
  color: #000;                 /* (your input inherits; pick black for readability) */

  box-shadow: 0 1px 3px rgba(0,0,0,0.25); /* shadow */
}

/* lg:text-[26px] */
@media (min-width: 1024px) {
  .og-sms-button {
    font-size: 26px!important;
  }
}

/* hover:shadow-lg hover:shadow-black/50 */
.og-sms-button:hover {
  box-shadow:
    0 10px 15px rgba(0,0,0,0.50),
    0 4px 6px rgba(0,0,0,0.50);
}

/* Nice-to-have parity if your plugin disables during submit */
.og-sms-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


/* Alerts: your template uses bootstrap-ish alerts; match that feel */
.og-sms-alert {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  line-height: 1.25;
}

/* Success */
.og-sms-alert--success {
  background: rgba(0,0,0, .75);
  border: 1px solid rgba(135, 235, 79, 0.35);
  color: #87EB4F;
}

/* Error */
.og-sms-alert--error {
  background: rgba(0,0,0, .75);
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: #ffb3bd;
}

/* Utility */
.og-hidden {
  display: none !important;
}


/* Hide native checkbox (UI is controlled by label text) */
.og-sms-check input {
  display: none !important;
}

.og-sms-consent {color:white}