@import url("https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

.page-id-998 .header-hero {
  height: 170px;
}

/* Wrapper & Grid */
.custom-form-wrapper {
  padding: 0px 50px;
}

.custom-form-wrapper .heading-div {
  text-align: center;
  margin-bottom: 40px;
}

.custom-form-wrapper .form-heading {
  font-weight: 700;
  font-size: 40px;
  margin: 0;
  font-family: "Elza Semibold";
}

.custom-form-wrapper .form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.custom-form-wrapper .form-field {
  display: flex;
  flex-direction: column;
  width: calc(50% - 16px);
}

/* Labels */
.custom-form-wrapper .form-field label {
  font-size: 13px;
  font-weight: 600;
  /*  margin-bottom: 6px;*/
  display: flex;
  text-align: left;
  align-items: center;
  font-family: "Elza Semibold";
}

.custom-form-wrapper .form-field .form-checkboxes label {
  font-size: 14px;
  font-weight: 500;
}

/* Inputs & Textareas */
.custom-form-wrapper .form-field input,
.custom-form-wrapper .form-field textarea,
.custom-form-wrapper .form-field select {
  height: 44px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.custom-form-wrapper .form-field textarea {
  min-height: 100px;
  padding-top: 10px;
  resize: vertical;
}

.custom-form-wrapper .form-field input:focus,
.custom-form-wrapper .form-field textarea:focus,
.custom-form-wrapper .form-field select:focus {
  outline: none;
  border-color: #e0752d;
}

/* Button */
.custom-form-wrapper .continue-btn,
.wc-block-components-button {
  font-size: 16px;
  /*  background-color: #e48a46;*/
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-family: Elza-Medium;
  background-image: none !important;
  box-shadow: none !important;
  margin-top: 40px;
}

.custom-form-wrapper .continue-btn::before {
  display: none !important;
}

/* Legal Text */
.custom-form-wrapper .form-legal {
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.6;
  font-weight: 500;
}

/* Field Error Handling */
.custom-form-wrapper .required-star {
  color: red;
  margin-left: 3px;
  font-weight: bold;
}

.custom-form-wrapper .input-error {
  border: 1px solid #d93025 !important;
  background-color: #fff8f8 !important;
}

.custom-form-wrapper .field-error,
.custom-form-wrapper .error-message,
.custom-form-wrapper .form-errors {
  color: #b30000;
  font-size: 13px;
  margin-top: 6px;
}

.custom-form-wrapper .success-message,
.custom-form-wrapper .form-success {
  color: #188038;
  font-size: 14px;
  margin-top: 10px;
}

/*.footer {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 28px;
}
.footer .footer-left-content,
.footer .footer-right-content{
  width: calc(50% - 16px);
}
.footer .footer-left-content{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}*/



.form-field-profile-image .title {
  font-size: 13px;
  font-weight: bold;
  font-family: "Elza Semibold";
}

.form-field-profile-image label {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 0 !important;
}

.form-field-profile-image label button {
  background-color: #fff !important;
  box-shadow: none !important;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 9px 15px;
  font-family: "Elza-Medium";
  color: #0f1727a6;
  font-weight: 500;
  text-align: left;
  display: inline-block;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  line-height: 1.5;
  width: 100%;
}

.form-field-profile-image label button::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  background-color: rgba(7, 36, 86, .045);
  border-radius: inherit;
  transition: opacity .25s;
}

.form-field-profile-image label button:hover::before {
  opacity: 1;
}

.form-field-profile-image label button span {
  font-size: 14px !important;
  color: #000 !important;
  font-family: "Elza Regular";
  opacity: 0.6;
}

.form-field-profile-image label input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  direction: ltr;
  width: 100%;
  height: 100%;
}