/* Form Module */
.form-module {
    font-family: 'RobotoDraft', 'Roboto', sans-serif;
  position: relative;
  background: #ffffff;
  border-top: 5px solid #ff8a00;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  padding-left: 0px;
  padding-right: 0px;
}
.form-module .toggle {
  cursor: pointer;
  position: absolute;
  top: -0;
  right: -0;
  background: #ff8a00;
  width: 30px;
  height: 30px;
  margin: -5px 0 0;
  color: #ffffff;
  line-height: 30px;
  text-align: center;
}
.form-module .toggle .tooltip {
  position: absolute;
  top: 5px;
  right: -65px;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  width: auto;
  padding: 5px;
  line-height: 1;
  text-transform: uppercase;
    opacity: 1;
    font-size: 10px;
}
.form-module .toggle .tooltip:before {
  content: '';
  position: absolute;
  top: 5px;
  left: -5px;
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid rgba(0, 0, 0, 0.6);
}
.form-module .form {
  display: none;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
}
.form-module .form:nth-child(2) {
  display: block;
}
.form-module h2 {
  margin: 0 0 20px;
  color: #003d81;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
    text-align: center;
}
.form-module input[type=text], input[type=password] {
  outline: none;
  display: block;
  width: 100%;
  border: 1px solid #d9d9d9;
  margin: 0 0 15px;
  padding: 10px 15px;
  box-sizing: border-box;
  font-wieght: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form-module input[type=text]:focus, input[type=password]:focus {
  border: 1px solid #ff8a00;
  color: #333333;
}
.form-module button {
  cursor: pointer;
  background: #ff8a00;
  width: 100%;
  border: 0;
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form-module button:hover {
  background: #df7000;
}
.form-module button:active {
    background: #df7000 !important;
}
.form-module button:focus {
    background: #df7000 !important;
}
.form-module button:after {
    background: #df7000 !important;
}
.form-module .cta {
  background: #f2f2f2;
  width: 100%;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #666666;
  text-align: center;
    font-size: 12px;
}
.form-module .cta a {
  color: #333333;
  text-decoration: none;
}
@media (max-width: 450px) {
    .form-module .form {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 40px;
        padding-bottom: 20px;
        font-size: 14px;
    }
    }
@media (min-width: 768px) {
    .form-module input[type=text], input[type=password]{
        min-width: 100% !important;
        margin-right: 0px !important;
    }
}
.page_link
{
    text-align: center;margin-top: 70px;font-size: 12px;
}
@media (max-width: 768px) {
    .page_link
    {
        margin-top: 20px;
    }
}