.php-email-form .error-message {
  display: none;
  background: #f2f2f2;
  color: #dd4141;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #031566;
  background: #f2f2f2;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 15px;
}

.php-email-form .loading {
  display: none;
  background: #f2f2f2;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #031566;
  border-top-color: #dd4141;
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
	transform: rotate(0deg);
  }

  100% {
	transform: rotate(360deg);
  }
}
