/*Fix form home*/
#wpcf7-f5-p19-o1>form>p:nth-child(4)>span.wpcf7-form-control-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.custom-contact-form label {
    color: #181811;
}

.custom-contact-form .lb-rq {
    color: #ef4444;
}

.custom-contact-form input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #181811;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.custom-contact-form input:focus {
  border-color: #3b82f6; /* primary */
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35);
}


.custom-contact-form select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #181811;
    padding: 12px 44px 12px 16px;
    outline: none;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23181811' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;

    transition: border-color .2s ease, box-shadow .2s ease;
}

.custom-contact-form select:focus {
  border-color: #3b82f6; /* primary */
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35);
}

.custom-contact-form  input[type="submit"] {
  margin-top: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border-radius: 9999px;
  background: #43237a;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  border: 1px solid #43237a;
}

.custom-contact-form input[type="submit"]:hover {
  background: #FFFFFF;
  color: #43237a;
}

.custom-contact-form input[type="submit"]:active {
  transform: scale(0.99);
}


.custom-contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #181811;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.custom-contact-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35);
}

.custom-contact-form .wpcf7-spinner {
    margin: 0;
    margin-top: 20px;
}