﻿body, html {
  height: 100%;
  background: linear-gradient(45deg, #fff, var(--color-background, #fff6eb));
}
body {
  color: #666666;
  font-family: 'RobotoDraft', 'Roboto', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main {
  padding: 0 16px;
}
/* Pen Title */
.pen-title {
  padding: 50px 0;
  text-align: center;
  letter-spacing: 2px;
}
.pen-title h1 {
  margin: 0 0 20px;
  font-size: 48px;
  font-weight: 300;
}
.pen-title span {
  font-size: 12px;
}
.pen-title span .fa {
  color: var(--color-primary, #f95506);
}
.pen-title span a {
  color: var(--color-primary, #f95506);
  font-weight: 600;
  text-decoration: none;
}

/* Form Module */
.form-module {
  position: relative;
  background: #ffffff;
  max-width: 320px;
  width: 100%;
  border-top: 5px solid var(--color-primary, #f95506);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}
.form-module.wide {
  max-width: 800px;
}
.form-module.wide .form {
  padding: 10px 40px;
}
.form-module .toggle {
  cursor: pointer;
  position: absolute;
  top: -0;
  right: -0;
  background: var(--color-primary, #f95506);
  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: -65px;
  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 {
  padding: 40px;
}
.form-module h2 {
  margin: 0 0 20px;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.form-module input[type=text], .form-module input[type=password], .form-module input[type=email], .form-module input[type=tel], .form-module select {
  outline: none;
  display: block;
  width: 100%;
  border: 1px solid #d9d9d9;
  margin: 0 0 20px;
  padding: 10px 15px;
  box-sizing: border-box;
  font-weight: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.form-module input[type=checkbox], .form-module input[type=radio] {
  outline: none;
  display: block;
  border: 1px solid #d9d9d9;
  margin: 0 0 40px;
  padding: 10px 15px;
  box-sizing: border-box;
  font-weight: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}


.form-module input:focus {
  border: 1px solid var(--color-primary, #f95506);
  color: #333333;
}
.form-module button {
  cursor: pointer;
  background: var(--color-primary, #f95506);
  width: 100%;
  border: 0;
  padding: 10px 15px;
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form-module button.small-btn {
  width: auto;
}
.form-module button:hover {
  background: var(--color-secondary, #ff8d57);
}
.form-module button.danger {
  background: #dc3545;
  margin-left: 20px;
}
.form-module button.danger:hover {
  background: #92232e;
}
.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;
}
.form-module input.input-catpcha {
  margin-bottom: 0;
}
.form-module .input-catpcha-img {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid #d9d9d9;
  padding: 0 4px;
}
.form-module .input-catpcha-img>img {
  height: 31px;
}