form.form {
  display: inline-block;
}

form.form input, form.form textarea, select {
  border: #e46e17 1px solid;
  border-radius: 4px;
  width: 400px;
  margin: 5px;
}

form.form p {
  text-align: left;
}

form.form div {
  display: inline-block;
  text-align: right;
}

form.form input:required, form.form textarea:required, select:required {
  border-color: #e46e17;
}

form.form input:focus, form.form textarea:focus, select:focus {
  border-color: #3399ff;
}

form.form button {
  border: #e46e17 1px solid;
  border-radius: 4px;
  background: -o-linear-gradient(top, #ccccff, #ffffff);
  background: -webkit-linear-gradient(top, #ccccff, #ffffff);
  background: -moz-linear-gradient(top, #ccccff, #ffffff);
  background: linear-gradient(top, #ccccff, #ffffff);
}

form.form button:hover {
  border: #e46e17 1px solid;
  border-radius: 4px;
  background: -o-linear-gradient(bottom, #ccccff, #ffffff);
  background: -webkit-linear-gradient(bottom, #ccccff, #ffffff);
  background: -moz-linear-gradient(bottom, #ccccff, #ffffff);
  background: linear-gradient(bottom, #ccccff, #ffffff);
}

.w100 { width: 100% !important; }

.w50px { width: 50px !important; }
.w100px { width: 100px !important; }
.w150px { width: 150px !important; }
.w200px { width: 200px !important; }
.w250px { width: 250px !important; }
.w300px { width: 300px !important; }
.w350px { width: 350px !important; }
.w400px { width: 400px !important; }