/* ==================================================
   BOTÃO ENVIAR DO FORMULÁRIO DE CONTATO
   HTML:
   <form id="contactform">
   <input id="submit" class="readmore">
================================================== */

.form {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form input[type="text"], .form textarea {
  width: 48%;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form input[type="text"]:nth-child(2n+1) {
  margin-right: 4%;
}

.form textarea {
  width: 100%;
  margin-bottom: 20px;
}

.form input[type="submit"] {
  width: 100%; 
  padding: 10px;
  background-color: #ff69b4;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form input[type="submit"]:hover {
  background-color: #40ff00;
  color: #fff;
}

.smoothborder {
  transition: border-color 0.3s ease;
}

.smoothborder:focus {
  border-color: #40ff00;
}