/* Zoho form styling — matches site theme and is responsive */
:root {
  --primary-blue: #1d4462;
  --primary-text: #222121;
  --accent-blue: #0078b6;
  --light-bg: #f7f9fb;
  --muted: #6c757d;
  --card-radius: 10px;
  --shadow: 0 6px 18px rgba(29,68,98,0.08);
}

/* Container */
#sf3zc3207514a667f68996debce43475481b15732fc1751030ea396ef75ea52d538e,
#customForm,
#SIGNUP_PAGE,
#signupMainDiv {
  max-width: 820px;
  margin: 0px;
  background: var(--white, #ffffff);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 0px;
  color: var(--primary-text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

/* Heading + description */
#SIGNUP_HEADING {
  font-size: 28px;
  line-height: 1.15;
  color: var(--primary-blue);
  margin: 0 0 8px;
  font-weight: 700;
}
#SIGNUP_DESCRIPTION {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 15px;
}

/* Error / success blocks */
#errorMsgDiv {
  color: #b02a37;
  background: rgba(176,42,55,0.05);
  border: 1px solid rgba(176,42,55,0.08);
  padding: 10px 12px;
  border-radius: 6px;
  display: none;
  margin-bottom: 12px;
  font-size: 14px;
}
#Zc_SignupSuccess {
  display: none;
  background: #e6f6ea;
  border: 1px solid #c2e19a;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  color: #2f6b47;
}

/* Fields layout */
.zcsffieldsdiv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
}
@media (max-width: 768px) {
  .zcsffieldsdiv { grid-template-columns: 1fr; }
}

/* Field label + input */
[name="SIGNUP_FORM_LABEL"] {
  display:block;
  font-weight:600;
  color: var(--primary-text);
  margin-bottom:6px;
  font-size:14px;
}
.zcinputbox input[type="text"],
.zcinputbox input[type="email"],
.zcinputbox input[type="tel"],
.zcinputbox input[type="password"],
.zcinputbox input[type="number"] {
  width:100%;
  padding: 10px 12px;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: var(--primary-text);
  transition: border-color .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
.zcinputbox input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(0,120,182,0.08);
}

/* Required star */
[name="SIGNUP_REQUIRED"] {
  color: #d9534f;
  margin-left:4px;
  font-weight:700;
}

/* Submit button */
#zcWebOptin {
  display: inline-block;
  background: #ffa41e;
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .12s ease, transform .08s ease;
  box-shadow: 0 6px 14px rgba(0,120,182,0.12);
}
#zcWebOptin:hover { background: #006496; transform: translateY(-1px); }
#zcWebOptin:active { transform: translateY(0); }

/* Hidden fields area */
input[type="hidden"] { display:none !important; }

/* Overlay and success popup */
#zcOptinOverLay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}
#zcOptinSuccessPopup {
  z-index: 9999;
  width: 90%;
  max-width: 760px;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  position: fixed;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: none;
}

/* Close icon */
#closeSuccess img { width: 26px; height: 26px; }

/* Accessibility and small tweaks */
#REQUIRED_FIELD_TEXT { color: var(--muted); font-size:13px; margin-top:8px; }
.successicon { width:36px; height:auto; }

/* Ensure fonts and inherit styles within Zoho content */
#customForm, #sf3zc3207514a667f68996debce43475481b15732fc1751030ea396ef75ea52d538e {
  font-family: inherit;
  color: inherit;
}

/* Make sure the iframe modal uses the same look if embedded */
@media (max-width: 480px) {
  #sf3zc3207514a667f68996debce43475481b15732fc1751030ea396ef75ea52d538e {
    padding: 18px;
    margin: 12px;
  }
}