/** @format */

@import url("../css/fonts.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-Futuru);
}
/* start landing section */
main .landing {
  padding-top: 0.1px;
  background-color: var(--secondary-color);
}
main .landing .heading {
  padding-top: 20px;
}
main .landing .heading h1 {
  font-family: var(--font-berlinBoldX);
  font-size: 34px;
  line-height: 124%;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
  margin-bottom: 35px;
}
main .landing .heading p {
  font-family: var(--font-berlinReg);
  font-size: 20px;
  line-height: 142%;
  color: #454545;
  text-align: left;
  padding-bottom: 10px;
  margin: 0;
}
/* end landing section */
/* start form section */
main .form {
  padding-top: 35px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}
main .form .heading {
  padding-bottom: 25px;
}
main .form .heading h2 {
  text-align: left;
}
main .form .form-area form .field-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 10px;
}
main .form .form-area form .field-group label {
  font-family: var(--font-Futuru);
  color: #000;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 7%;
}
main .form .form-area form .field-group input,
main .form .form-area form .field-group select {
  color: #000;
  padding: 10px 15px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #e2e1e5;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 7%;
}
main .form .form-area form .field-group select {
  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Add custom arrow via background SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 20px; /* make room for the arrow */
}
main .form .form-area form .field-group input:hover,
main .form .form-area form .field-group select:hover {
  border-color: #000;
}
main .form .form-area form .field-group .error-msg {
  font-family: var(--font-Futuru);
  color: #f14668;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 7%;
}
main .form .form-area form .field-group.error-active input,
main .form .form-area form .field-group.error-active select {
  border-color: #f14668;
}
main .form .form-area form .field-group input::placeholder {
  color: #d2d2d2;
}
main .form .form-area form .field-group .checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
}
main .form .form-area form .field-group .checkbox-list label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
  transition:
    border-color 0.2s,
    background 0.2s;
}
main .form .form-area form .field-group .checkbox-list label:hover {
  background: #fafafa;
}
main
  .form
  .form-area
  form
  .field-group
  .checkbox-list
  label.checkbox-item:has(input:checked) {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
}
main
  .form
  .form-area
  form
  .field-group
  .checkbox-list
  label
  input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  accent-color: var(--primary-color);
  transition:
    background 0.2s,
    border-color 0.2s;
}
main .form .form-area form button {
  border: none;
  width: 100%;
  height: 60px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 10px;
  text-transform: capitalize;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}
main .form .form-area form p {
  font-family: var(--font-Futuru);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
  color: #bababa;
}
/* end form section */
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
@media (min-width: 768px) {
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .form .form-area form .field-group {
    width: 60%;
  }
  main .form .form-area form button,
  main .form .form-area form p {
    width: 60%;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .landing .heading {
    padding-top: 125px;
    width: 80%;
    padding-bottom: 60px;
  }
  main .landing .heading h1 {
    font-size: 48px;
  }
  main .landing .heading p {
    font-size: 20px;
  }
  main .form .form-area form .field-group {
    width: 40%;
  }
  main .form .form-area form button,
  main .form .form-area form p {
    width: 40%;
  }
}
/* for Desktops/Large Screens */
/* @media (1025px <= width <= 1200px) {
} */
/* for TVs/Wide Monitors */
/* @media (min-width: 1201px) {
} */
