

     input.error,
select.error,
textarea.error {
  border: 2px solid red !important;
}

.error-message {
  color: red!important;
  font-size: 0.9em;
  margin-top: 5px;
  background: transparent!important;
 
  display: none;
  margin-bottom: 0px!important;
}
   
  .form-error {
    border: 1px solid red !important;
  }

   input[type="checkbox"] {
      width: 14px;
      height: 14px;
    
    }

    .lp-pom-image-container img{
        width: auto!important;
    }



    .form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* затемнение */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #555;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Убедитесь, что форма позиционируется */
.php-email-form {
  position: relative;
}