/* Date Time Input Style */

.dataTimeInput {
  border: none;
  border-bottom: solid 1px #1b1b1b;
  border-radius: 0px;
  text-decoration: initial;
  background-color: #FFFFFF;
}

.dataTimeInput:hover {
  font-size: 17px;
  transition: 0.3s;
}

.dataTimeInput:focus {
  border: none;
}

.dataTimeInput:active {
  border: none;
}

.form-control {
  font-family: 'Raleway';
}

/* Text Input Style */

.divTextInput {
  margin: 0 auto 20px;
  position: relative;
}

.divTextInput > i {
  color: #999;
  font-size: 20px;
  position: absolute;
  left: 5px;
  top: 13px;
}

.divTextInput > .form-control {
  color: #808080;
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
  height: 45px;
  padding: 10px 8px 10px 40px;
  box-shadow: none;
  border: 0 solid rgba(0,0,0,0.2);
  border-bottom: 2px solid rgba(0,0,0,0.2);
  border-radius: 0;
  display: block;
}

.divTextInput > .form-control:focus {
  color: #D78d40;
  box-shadow: none;
  border-bottom-color: #D78d40;
}

