

.newform {
	
  max-width: 300px;
  margin: 10px auto;
  padding: 10px 20px;
  border-radius: 8px;
}



.newform 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: 15px;
  width: 100%;
  background-color: #e8eeef;
  color: #8a97a0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
  margin-bottom: 30px;
}

.newform input[type="radio"],
input[type="checkbox"] {
  margin: 0 4px 8px 0;
}

.newform select {
  padding: 6px;
  height: 32px;
  border-radius: 2px;
}


.newform fieldset {

  border: none;
}

.newform legend {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.newform label {
  display: block;
  margin-bottom: 8px;
}

.newform label.light {
  font-weight: 300;
  display: inline;
}

.number {
  background-color: #2ccfbb;
  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) {

  .newform  {
    max-width: 627px;
  }

}
@media only screen and (max-width: 600px) {
	
  		.newform{padding: 10px 30px;}
}
@media only screen and (max-width: 479px) {
	
  		.newform{padding: 10px 0px;}
}