/* Style inputs with type="text", select elements and textareas */
input[type=text],input[type=email] select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */  
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #ba2026;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #2c2c2c;
}

/* Add a background color and some padding around the form */
.email-container {
  background-color: #e6e6e6;
  padding: 20px;
}