/* CSS Document */
/*form label style */
.input-wrapper {
  position: relative;
  /*border:1px solid white;*/
  padding: 2px;
}
input, select, textarea {
  border: 2px solid #e9ebee;
  border-radius: 6px;
  position: relative;
  width: 90%;
  margin: 3px;
  padding: 8px;
  box-shadow: 4px 4px 5px grey;
}
label {
  position: absolute;
  top: -13px;
  z-index: 1;
  left: 2em;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  background: #FAF9F6;
  padding: 0 8px;
}