Formularios

Los formularios

/* FORMS */

input[type=text],
input[type=email],
textarea,
select
 {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input:focus, textarea:focus {
  background-color: #fafafa;
}

input[type=submit] {
  width: 100%;
  background-color: #c13a02;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #4CAF50;
}