body {
  background: #b4b4b4;
  color: #fff;
  text-align: center;
  font-family: Arial, Helvetica;
}
.neonweb-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
}
.neonweb-dropdown-text {
  margin: 10px;
  display:inline-block;
}
.neonweb-dropdown select{
  background-color: #1abc9c;
  color: #fff;
  font-size: inherit;
  padding: .5em;
  padding-right: 4.5em;
  border: 0;
  margin: 0;
  border-radius: 3px;
  text-indent: 0.01px;
  text-overflow: '';
  -webkit-appearance: button;
  -moz-appearance: none;
}
.neonweb-dropdown-text input{
  background-color: #1abc9c;
  color: #fff;
  font-size: inherit;
  padding: .5em;
  padding-right: 2em;
  border: 0;
  margin: 0;
  border-radius: 3px;
  text-indent: 0.01px;
  text-overflow: '';
  -webkit-appearance: button;
}
.neonweb-dropdown::before,
.neonweb-dropdown::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.neonweb-dropdown::after {
  content: "\25BC";
  height: 1em;
  font-size: .625em;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -.5em;
}
.neonweb-dropdown::before {
  width: 2em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 3px 3px 0;
}
.neonweb-dropdown select[disabled] {
  color: rgba(0,0,0,.3);
}
.neonweb-dropdown select[disabled]::after {
  color: rgba(0,0,0,.1);
}
.neonweb-dropdown::before {
  background-color: rgba(0,0,0,.15);
}
.neonweb-dropdown::after {
  color: rgba(0,0,0,.4);
}
.submit {
  background-color:#2a2a2b;
  -moz-border-radius:28px;
  -webkit-border-radius:28px;
  border-radius:28px;
  border:1px solid #1abc9c;
  color: white;
  padding: 16px 62px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  cursor: pointer;
}
.submit:hover {
  background-color: #1abc9c;
  color: white;
}
.submit:active {
  position:relative;
  top:1px;
}
