body {
  background: #e9e9e9;
  background-image: url(../../img/zm.jpg);
  color: #666666;
  font-family: 'RobotoDraft', 'Roboto', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Form Module */
.form-module {
  position: relative;
  background: #ffffff;
  max-width: 320px;
  width: 100%;
  border-top: 3px solid #cccccc;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-top:6%;
}

.form-logo {
  position: relative;
  max-width: 320px;
  width: 100%;


  margin: 0 auto;

}

.form-module .form {
  display: none;
  padding: 40px;
}
.form-module .form:nth-child(1) {
  display: block;
}
.form-module h2 {
  margin: 0 0 30px;
  color: #999999;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.form-module input {
  outline: none;
  display: block;
  width: 100%;
  border-left:0px;
  border-right:0px;
  border-top:0px;
  border-bottom: 1px solid #d9d9d9;
  margin: 0 0 10px;
  padding: 10px 5px;
  box-sizing: border-box;
  font-wieght: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form-module input:focus {
  border-left:0px;
  border-right:0px;
  border-top:0px;
  border-bottom: 2px solid #ccc;

  color: #333333;
}
.button {
  cursor: pointer;
  background: #999;
  width: 100%;
  border: 0;
  padding: 10px 15px;
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  background: #FF9900;
}
.form-module .cta {
  background: #f2f2f2;
  width: 100%;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #666666;
  font-size: 12px;
  font-family:arial;
  text-align: center;
}
.form-module .cta a {
  color: #333333;
  text-decoration: none;
}
