body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
}

.contactFormContainer {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

h2 {
  text-align: center;
  color: #4ca725;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.fieldGroup {
  position: relative;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #4ca725;
}

label {
  position: absolute;
  top: 14px;
  left: 15px;
  color: #999;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}

input:focus + label,
input:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  color: #4ca725;
  font-size: 16px;
  font-weight: bold;
  background-color: white;
  padding: 0 5px;
}

textarea {
  resize: none;
}

.submitButton {
  width: 100%;
  padding: 12px;
  background-color: #4ca725;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submitButton:hover {
  background-color: #3b8f1a;
}

.formError {
  color: red;
  font-size: 12px;
  display: none;
  margin-top: 5px;
}

.fieldGroup input:invalid ~ .formError,
.fieldGroup textarea:invalid ~ .formError {
  display: block;
}

@media (max-width: 501px) {
  .contactFormContainer {
      width: 90%;
  }

  .submitButton {
      font-size: 16px;
  }
}
.contactArticle{
  background-color: white;
}

.contactFormContainer{
margin-top: 60px;
margin-bottom: 60px;
}

#contactFormNew{
  width: auto;
}