




input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  background: rgba(255,255,255,0.1);
  border: none;
  font-size: 16px;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 8px;
  width: 100%;
  background-color: #f5f5f5;
  color: #8B8B8B;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.05) inset;
  margin-bottom: 10px;
  border: 1px solid  #0F79BF;
  /*border-color:#ccc #ddd #ddd #ccc;*/
}

input:focus{
    background-color:#FFFFFF;
	box-shadow: 0px 0px 0px rgba(0,0,0,0.0) inset;
}
textarea:focus{
    background-color:#FFFFFF;
	box-shadow: 0px 0px 0px rgba(0,0,0,0.0) inset;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 0 4px 8px 0;
}

select {
  padding: 6px;
  height: 52px;
  border-radius: 2px;
}

button {
  padding: 10px/*19px 39px 18px 39px*/;
  color: #FFF;
  background-color: #4bc970;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  border-radius: 5px;
  width: auto;
  border: 1px solid #3ac162;
  border-width: 1px 1px 3px;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
  /*margin-bottom: 10px;*/
}

fieldset {
  margin-bottom: 30px;
  border: none;
}

legend {
  font-size: 1.4em;
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 8px;
}

label.light {
  font-weight: 300;
  display: inline;
}

.number {
  background-color: #5fcf80;
  color: #fff;
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 0.8em;
  margin-right: 4px;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  border-radius: 100%;
}

@media screen and (min-width: 480px) {

  form {
    max-width: 100%;
  }

}