* {box-sizing: border-box;}

input[type=text], select, textarea {
    font-size: 100%;
    font-weight: 500;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
    font-weight: 500;
    font-size: 100%;
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

button[type=submit]{
    font-weight: 500;
    font-size: 100%;
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

button[type=submit]:hover {
    background-color: #45a049;
  }

.contact-form-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100%;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

