/*Paperless Enrollment*/
.pageheader {
  color: #0039a6;
  font-size: 18px;
  font-family: Century Gothic;
  font-weight: 400;
  letter-spacing: 0.56px;
  word-wrap: break-word;
  margin-left: 2.5rem;
}

.pageborderbottom {
  width: 86%;
  height: 1px;
  background-color: #e8e8e8;
  border: none;
  margin: 10px 7px 20px 38px;
}

.boxborder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 173, 208, 0.06) 0%,
    rgba(0, 173, 208, 0.2) 100%
  );
  border-radius: 4px;
  border: 1px #00add0 solid;
}

.enrollment-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86%;
  margin-left: 2.5rem;
}

.enrollment-box {
  background: linear-gradient(
    180deg,
    rgba(0, 173, 208, 0.06) 0%,
    rgba(0, 173, 208, 0.2) 100%
  ) !important;
  border: 1px solid #00add0;
  border-radius: 4px;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.heading {
  color: #0039a6;
  font-size: 16px;
  font-family: Century Gothic;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.56px;
  word-wrap: break-word;
}

.features {
  display: flex;
  justify-content: space-between; /* better control than space-around */
  flex-wrap: wrap;
  gap: 20px; /* adds equal space between items */
  padding: 0 90px; /* left & right spacing */
  margin-bottom: 25px;
  box-sizing: border-box; /* ensures padding doesn’t break layout */
}

.feature {
  width: 170px;
  text-align: center;
  margin-bottom: 20px;
}

.feature h3 {
  color: #0039a6;
  font-size: 13px;
  font-family: Century Gothic;
  font-weight: 600;
  letter-spacing: 0.41px;
  word-wrap: break-word;
}

.feature p {
  color: #0039a6;
  font-size: 11px;
  font-family: Century Gothic;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.41px;
  word-wrap: break-word;
}

.instruction {
  font-style: italic;
  font-size: 13px;
  color: #000;
  margin-bottom: 20px;
  display: none;
}

.instruction.active {
  display: inline;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 350px;
  margin: 0 auto;
  text-align: left;
}

.form label {
  color: #212121;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
}

.form input {
  width: 100%;
  height: 30px;
  border: 1px solid #d8d8d8;
  margin-top: 5px;
  padding: 5px 10px;
  font-size: 13px;
  font-family: 'Century Gothic', sans-serif;
  box-sizing: border-box;
}

.form input::placeholder {
  color: #979797;
}

.continue-btn {
  width: 100%;
  background-color: #dfdf00;
  color: #0039a6;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  border: none;
  margin-top: 25px;
  height: 40px;
  cursor: pointer;
}

.continue-btn:hover {
  opacity: 0.9;
}

.skip-link {
  display: block;
  margin-top: 15px;
  color: #0039a6;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 600px) {
  .enrollment-box {
    padding: 25px 15px;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 100%;
    margin-bottom: 20px;
  }
}
/*confirm-enrollment*/
.verification-container {
  background: linear-gradient(
    180deg,
    rgba(0, 173, 208, 0.06) 0%,
    rgba(0, 173, 208, 0.2) 100%
  );
  border: 1px solid #00add0;
  border-radius: 8px;
  max-width: 792px;
  width: 90%;
  padding: 30px 20px;
  box-sizing: border-box;
  margin-left: 2rem;
}

.verification-header {
  color: #0039a6;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.56px;
  line-height: 24px;
  margin-bottom: 25px;
  padding: 1rem;
}

.verification-section {
  margin: 20px auto;
  max-width: 350px;
}

.verification-section label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: #212121;
  margin-bottom: 5px;
}

.input-group {
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 8px 38px 8px 10px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  font-size: 13px;
  color: #212121;
  box-sizing: border-box;
}

/* Success / Error Indicators */
/* SVG indicators */
.indicator {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: none;
}

.indicator.active {
  display: inline;
}

/* Bottom line container (Invalid + Resend) */
.bottom-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20px; /* fixed height to avoid layout shift */
  margin-top: 6px;
}

.invalid-text {
  color: #e98300;
  font-size: 13px;
  font-weight: 600;
  visibility: hidden; /* hidden keeps space reserved */
}

.invalid-text.active {
  visibility: visible; /* shown when error appears */
}

.resend-link {
  font-size: 13px;
  color: #0039a6;
  text-decoration: underline;
  cursor: pointer;
}

/* Buttons */
.btnverification {
  width: 100%;
  max-width: 350px;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: 15px auto 0;
}

.btn-confirm {
  background: #dfdf00;
  color: #0039a6;
  font-weight: 400;
}

.btn-skip {
  width: 100%;
  margin-left: 19rem;
}

@media (max-width: 480px) {
  .verification-header {
    font-size: 14px;
    line-height: 22px;
  }

  .btn {
    font-size: 14px;
  }

  .resend-link {
    font-size: 12px;
  }
}

.billing-card {
  display: flex;
  background: #f2f2f2;
  font-family: 'Century Gothic', sans-serif;
  border-radius: 6px;
  overflow: hidden;
  margin-left: 3rem;
}

.left-panel {
  width: 50%;
  background: #e8e8e8;
  padding: 20px;
}

.right-panel {
  width: 50%;
  padding: 20px;
  color: #212121;
}

.right-panel h3 {
  color: #0039a6;
  font-size: 14px;
  font-weight: 600;
}

.hide-right .right-panel {
  display: none;
}

.atagunderline {
  color: #0039a6;
  font-size: 12px;
  text-decoration: underline;
  display: block;
  margin-top: 4px;
}

.updateEmailPhoneNumber {
  color: #0039a6;
  font-size: 13px;
  font-family: Century Gothic;
  font-weight: 400;
  text-decoration: underline;
  word-wrap: break-word;
}

.due {
  color: #0039a6;
  font-size: 24px;
  font-weight: 600;
}

.add-btn {
  background: #0039a6;
  color: white;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Century Gothic', sans-serif;
  border: none;
  padding: 10px 16px;
  border-radius: 2px;
  margin-top: 40px;
  cursor: pointer;
}

.add-btn:hover {
  background: #002d80;
}

.right-panel h2 {
  color: #0039a6;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}

/*.right-panel p {
  color: #0039a6;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}*/
.enroll-btn {
  background-color: #0039a6;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  cursor: pointer;
}

.enroll-btn:hover {
  background-color: #002e85;
}

.error {
  display: block;
  color: #e98300;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

.instruction-popup {
  color: black;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.41px;
  margin-top: 15px;
}

.input-group-popup {
  margin-top: 20px;
  width: 446px;
  position: relative;
}

.label-popup {
  display: block;
  color: #4d4f53;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.input-popup {
  width: 100%;
  height: 30px;
  border: 1px solid #d8d8d8;
  font-size: 13px;
  color: #4d4f53;
  padding: 4px 10px;
  box-sizing: border-box;
}

.current {
  left: 24px;
  top: 98px;
}

.current .label {
  color: #4d4f53;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.41px;
  margin-bottom: 10px;
}

.current .value {
  margin-top: 8px;
  color: #4d4f53;
  font-size: 13px;
  letter-spacing: 0.41px;
}

.verify-input-section-popup {
  margin-top: 30px;
  width: 446px;
  position: relative;
}

.verify-label-popup {
  display: block;
  color: #4d4f53;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.41px;
  margin-bottom: 4px;
}

.verify-code-box-popup {
  position: relative;
  width: 100%;
  height: 30px;
  border: 1px solid #d8d8d8;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.verify-code-text-popup {
  color: #4d4f53;
  font-size: 13px;
  letter-spacing: 0.41px;
}

.verify-success-icon-popup {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.verify-success-icon-popup.active {
  display: inline;
}

.resend-code-popup {
  position: absolute;
  right: 0;
  top: 54px;
  color: #0039a6;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.verify-input-popup {
  width: 100%;
  height: 36px;
  border: 1px solid #d8d8d8;
  padding: 0 36px 0 10px;
  font-size: 13px;
  color: #4d4f53;
  box-sizing: border-box;
}

.existingEmailPhoneNumberLabel {
  color: #212121;
  font-size: 14px;
  font-family: Century Gothic;
  font-weight: 600;
  word-wrap: break-word;
}

existingEmailPhoneNumbertext {
  font-size: 14px;
  font-family: Century Gothic;
  font-weight: 400;
  word-wrap: break-word;
  color: #212121;
}

.popupContentDiv {
  margin-bottom: 7px;
}

.subtitle {
  margin-bottom: 7px;
}

.verify-modal {
  width: 520px;
  background: #fff;
  border: 1px solid #0039a6;
  padding: 28px;
  border-radius: 3px;
  font-family: 'Century Gothic', sans-serif;
}

.verify-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.verify-header h2 {
  font-size: 20px;
  color: #0039a6;
  font-weight: 600;
  margin: 0;
}

.verify-text {
  margin-top: 14px;
  font-size: 14px;
  color: #212121;
  line-height: 22px;
  width: 460px;
}

.verify-label {
  display: block;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #4d4f53;
}

.verify-input-wrapper {
  margin-top: 8px;
  position: relative;
  width: 100%;
  height: 42px;
}

.verify-input {
  width: 100%;
  height: 42px;
  border: 1px solid #d8d8d8;
  padding: 10px;
  font-size: 14px;
  color: #4d4f53;
}

.verify-success-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 22px;
  height: 22px;
  background: #19b12e;
  border-radius: 50%;
}

.verify-resend {
  background: none;
  border: none;
  color: #0039a6;
  text-decoration: underline;
  font-size: 14px;
  margin-top: 6px;
  cursor: pointer;
  float: right;
}

.verify-buttons {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}

.btn-complete {
  width: 130px;
  height: 44px;
  background: #0039a6;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.btn-cancel {
  width: 130px;
  height: 44px;
  background: #fff;
  color: #0039a6;
  border: 2px solid #0039a6;
  font-size: 16px;
  cursor: pointer;
}

.subtitleText {
  color: #212121;
  font-size: 14px;
  font-family: Century Gothic;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word;
}
/*.verify-success-icon:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 8px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}*/
.verify-success-icon:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 2px;
  width: 14px; /* adjust */
  height: 14px; /* adjust */
  background-image: url('tick.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.resend-link.disabled {
  pointer-events: none; /* disables click */
  opacity: 0.5; /* visual cue */
  cursor: default; /* normal cursor */
}
