.contact-form-wrap {
  max-width: 100%;
  margin: 0 auto;
}

.contact-form-style {
  width: 100%;
}

.contact-form-style .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-style label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #253D4E;
  font-family: "Ubuntu", sans-serif;
}

.contact-form-style .text-danger {
  color: #FD6E6E !important;
}

.contact-form-style .form-control {
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 10px;
  height: 64px;
  box-shadow: none;
  padding: 0 20px;
  font-size: 16px;
  background: #fff;
  transition: all 0.3s ease;
  color: #253D4E;
}

.contact-form-style .form-control:focus {
  background: transparent;
  border-color: #f5c8c7;
  outline: none;
  box-shadow: none;
}

.contact-form-style .form-control::-moz-placeholder {
  color: #7E7E7E;
  opacity: 1;
}

.contact-form-style .form-control::placeholder {
  color: #7E7E7E;
  opacity: 1;
}

.contact-form-style textarea.form-control {
  min-height: 200px;
  height: auto;
  padding: 15px 20px;
  resize: vertical;
}

.contact-form-style .custome-checkbox {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}

.contact-form-style .custome-checkbox .form-check-input {
  display: none;
}

.contact-form-style .custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
  color: #7E7E7E;
  padding: 0;
  vertical-align: middle;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
}

.contact-form-style .custome-checkbox .form-check-label::before {
  content: "";
  border: 2px solid #ced4da;
  height: 20px;
  width: 20px;
  min-width: 20px;
  margin: 0 10px 0 0;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  background: #fff;
  transition: all 0.3s ease;
}

.contact-form-style .custome-checkbox .form-check-label span {
  vertical-align: middle;
  display: inline-block;
  padding-top: 2px;
}

.contact-form-style .custome-checkbox .form-check-label span a {
  color: #ef4946;
  text-decoration: underline;
}

.contact-form-style .custome-checkbox .form-check-label span a:hover {
  color: #FDC040;
}

.contact-form-style .custome-checkbox input[type="checkbox"]:checked + .form-check-label::before {
  background-color: #ef4946;
  border-color: #ef4946;
}

.contact-form-style .custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
  opacity: 1;
}

.contact-form-style .custome-checkbox input[type="checkbox"] + .form-check-label::after {
  content: "";
  width: 11px;
  position: absolute;
  top: 6px;
  left: 5px;
  opacity: 0;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}

.contact-form-style .button-contactForm {
  font-size: 16px;
  font-weight: 700;
  padding: 15px 40px;
  color: #ffffff;
  border: none;
  background-color: #ef4946;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Ubuntu", sans-serif;
  min-width: 180px;
  border: 2px solid #ef4946;
}

.contact-form-style .button-contactForm:hover {
  background-color: #FDC040;
  border-color: #FDC040;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(239, 73, 70, 0.3);
}

.contact-form-style .captcha-wrap {
  padding: 15px;
  background: #F2F3F4;
  border-radius: 10px;
  display: inline-block;
}

.contact-form-style .captcha-wrap img {
  display: block;
  border-radius: 5px;
}

.contact-form-wrap .alert {
  padding: 20px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-wrap .alert-danger {
  background-color: #fde0e9;
  color: #f74b81;
  border: 1px solid #f74b81;
}

.contact-form-wrap .alert-success {
  background-color: #DEF9EC;
  color: #ef4946;
  border: 1px solid #ef4946;
  font-weight: 600;
  font-family: "Ubuntu", sans-serif;
}

.contact-form-style .mt-2 {
  margin-top: 8px;
}

.contact-form-style .mb-3 {
  margin-bottom: 15px;
}

/* Responsive */
@media only screen and (max-width: 767px) {
  .contact-form-style .form-control {
    height: 50px;
    font-size: 14px;
  }
  
  .contact-form-style textarea.form-control {
    min-height: 150px;
  }
  
  .contact-form-style .button-contactForm {
    width: 100%;
    padding: 12px 30px;
    font-size: 14px;
  }
  
  .contact-form-style label {
    font-size: 13px;
  }
}

@media only screen and (max-width: 480px) {
  .contact-form-wrap {
    padding: 0;
  }
  
  .contact-form-style .custome-checkbox .form-check-label {
    font-size: 12px;
  }
  
  .contact-form-style .form-group {
    margin-bottom: 1rem;
  }
}
