* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.support-section {
  padding: 60px 0;
  width: 100%;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.image-wrapper {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 0px;
  width: 100%;
  height: 70%;
  background-image: radial-gradient(#b7b7b7 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: 1;
  border-radius: 16px;
}

.form-container {
  border-radius: 8px;
}

.support-section h2 {
  color: #2d2d2d;
  font-weight: 400;
  font-size: 40px;
}

.support-section p {
  color: #999;
  font-weight: 400;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  color: #494949;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: none;
  color: #999;
  border-radius: 6px;
  background-color: #f1f1f1;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-size: 14px;
}

.submit-btn {
  background-color : #00661bc4;;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
}

.submit-btn:hover {
  background-color:  #00661bc9;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.3);
}

.left-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
    padding: 10px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px;
  }

  .image-wrapper::after {
    right: -30px;
    bottom: -15px;
    height: 60%;
  }
}

@media (max-width: 767.98px) {
  .support-section {
    padding: 30px 0;
  }

  .image-wrapper {
    margin-bottom: 30px;
  }

  .image-wrapper::after {
    right: 0px;
    bottom: -10px;
    width: 90%;
    left: 5%;
    height: 50%;
  }

  .form-container {
    padding: 15px;
  }

  .support-section h2 {
    font-size: 32px;
  }

  .support-section p {
    font-size: 14px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
    padding: 10px;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    font-size: 14px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 12px;
  }
}

@media (min-width: 992px) {
  .image-wrapper::after {
    right: -60px;
    bottom: -20px;
    width: 100%;
    height: 70%;
  }
}


/* Force intl-tel-input to match Bootstrap form-control */
.iti {
  width: 100%;
}

.iti input,
.iti .form-control {
  height: 42px;
  padding-left: 48px; /* for the flag */
  border-radius: 6px;
  background-color: #eeeeee;
  box-shadow: none;
  font-size: 14px;
}

.iti input:focus {
  border: 1px solid #80bdff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  outline: none;
  background-color: #f8f8f8;
}
