* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  box-sizing: border-box;
}

body {
  padding: 24px;
  background: #154e15;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #206020;
  width: 600px;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

input,
textarea,
button {
  width: 550px;
  margin: 8px 0;
  padding: 12px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  outline: none;
  background: transparent;
  color: white;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

input:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #80d080;
}

button {
  width: 100%;
  cursor: pointer;
  background: #1e7d1e;
  border: 1px solid #1e7d1e;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background: #26a626;
  transform: scale(1.05);
}

button:active {
  transform: scale(1);
}

::placeholder {
  color: #9e9b9b;
}

#responseMessage {
  margin-top: 10px;
  font-weight: bold;
}
.success {
  color: green;
}
.error {
  color: red;
}

@media (max-width: 530px) {
  .container {
    width: 300px;
  }

  input,
  textarea,
  button {
    width: 250px;
    margin: 3px 0;
  }

  #responseMessage {
    margin-top: 10px;
    font-size: 15px;
    font-weight: bold;
    
  }
}
