.formLog {
  background: white;
  width: 40%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  font-family: lato;
  position: relative;
  color: #333;
  border-radius: 10px;
}
.formLog header {
  background: #6e6e6e;
  padding: 30px 20px;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}
.formLog label {
  margin-left: 20px;
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 5px;
  position: relative;
}
.formLog label span {
    color: #6e6e6e;
    font-size: 2em;
    position: relative;
    left: 0.2em;
    top: 14px;
}
.formLog input {
  display: block;
  width: 78%;
  margin-left: 20px;
  padding: 5px 20px;
  font-size: 1em;
  border-radius: 3px;
  outline: none;
  border: 1px solid #ccc;
}
.formLog .help {
  margin-left: 20px;
  font-size: 0.8em;
  color: #777;
}
.formLog button {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: inherit;
  color: white;
  background: #6e6e6e;
  outline: none;
  border: none;
  padding: 11px 50px;
  font-size: 1.3em;
  font-weight: 400;
  border-radius: 3px;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.formLog button:hover {
  background: #a7a7a7;
}
