html, body  {
  height: 100%;
}
body {
  background-color: rgba(24,143,203,1);
  background-color: -moz-linear-gradient(top, rgba(24,143,203,1) 0%, rgba(26,131,196,1) 100%);
  background-color: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(24,143,203,1)), color-stop(100%, rgba(26,131,196,1)));
  background-color: -webkit-linear-gradient(top, rgba(24,143,203,1) 0%, rgba(26,131,196,1) 100%);
  background-color: -o-linear-gradient(top, rgba(24,143,203,1) 0%, rgba(26,131,196,1) 100%);
  background-color: -ms-linear-gradient(top, rgba(24,143,203,1) 0%, rgba(26,131,196,1) 100%);
  background-color: linear-gradient(to bottom, rgba(24,143,203,1) 0%, rgba(26,131,196,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#188fcb', endColorstr='#1a83c4', GradientType=0 );
  background: rgba(24,143,203,1) url('../img/clouds.png') repeat-x bottom;

  color: #666666;
  font-family: 'RobotoDraft', 'Roboto', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-wrapper {
  display: table;
  height: 100%;
  margin: 0 auto;
}
.c-error .c-validation {
  background: #e93353 !important;
  padding: 10px !important;
  border-radius: 0 !important;
  position: absolute;
  display: inline-block !important;
  box-shadow: 1px 1px 1px #aaaaaa;
  color: #fff;
  width: 100%;
  top: 0;
  left: 335px;
}
.c-error .c-validation::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #c51244;
  position: absolute;
  top: 6px;
  left: -10px;
}

.c-error input, .c-error textarea, .c-error .c-choice-option{
  background: #fff0f4;
  color: #c51244;
}
.c-error input, .c-error textarea{
  border: 1px solid #c51244 !important;
}


.login-wrapper {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.inner-login {
  margin-top: -70px;
}
/* Pen Title */
.pen-title {
  text-align: center;
  letter-spacing: 2px;
}
.pen-title h1 {
  margin: 0 0 20px;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  text-shadow: 5px 3px #000;
}
.pen-title span {
  font-size: 12px;
}
.pen-title span .fa {
  color: #33b5e5;
}
.pen-title span a {
  color: #33b5e5;
  font-weight: 600;
  text-decoration: none;
}

/* Form Module */
.form-module {
  position: relative;
  background: #ffffff;
  min-width: 400px;
  width: 100%;
  border-top: 5px solid #33b5e5;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
.form-module .toggle {
  cursor: pointer;
  position: absolute;
  top: -0;
  right: -0;
  background: #33b5e5;
  width: 30px;
  height: 30px;
  margin: -5px 0 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
}
.form-module .toggle .tooltip {
  position: absolute;
  top: 5px;
  right: -100px;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  width: auto;
  padding: 5px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.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: 40px;
}
.form-module .form:nth-child(2) {
  display: block;
}
.form-group {
  margin-bottom: 0px;
}
.form-module h2 {
  margin: 0 0 20px;
  color: #33b5e5;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.form-module input, .form-module textarea {
  outline: none;
  display: inline-block;
  width: 100%;
  border: 1px solid #d9d9d9;
  margin: 0 0 20px;
  padding: 10px 15px;
  box-sizing: border-box;
  font-wieght: 400;
  height: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form-module input:focus , .form-module textarea:focus {
  border: 1px solid #33b5e5;
  color: #333333;
}
.form-module button {
  cursor: pointer;
  background: #33b5e5;
  width: 100%;
  border: 0;
  padding: 10px 15px;
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form-module button:hover {
  background: #178ab4;
}
.form-module .cta {
  background: #f2f2f2;
  width: 100%;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #666666;
  font-size: 12px;
  text-align: center;
}
.form-module .cta a {
  color: #333333;
  text-decoration: none;
}
