* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.column {
  float: left;  
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  background-color: rgb(201, 201, 201);
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #ff7b00;
  color: white;
  padding: 10px 46%;
  border: none;
 margin-top: 20px;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #ff7b00;
}

.clmn {
  background-color: #f2f2f2;
  padding: 4%;
}