* {
  box-sizing: border-box;
}

body {
  background: #f7f7f7;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0 20px;
}
body p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

img {
  max-width: 100%;
}

#logo {
  display: block;
  max-width: 80%;
  width: 250px;
  margin: 0 auto;
  padding: 25px;
}

div.content {
  background: #fff;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  width: 600px;
  margin: 0 auto;
}
div.content #form-progress {
  height: 10px;
  width: 100%;
  background: #fff2f9;
}
div.content #form-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #b92278;
  transition: width ease-in-out 0.6s;
}
div.content form {
  background: #fff;
  padding: 20px 20px;
  margin-bottom: 75px;
}
div.content form .buttons {
  text-align: center;
  margin-top: 50px;
}
div.content form button {
  border-radius: 0;
  font-weight: 700;
  font-size: 20px;
  padding: 14px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
  width: 45%;
  margin: 0 5px;
}
div.content form button.prev {
  background-color: #ececec;
  color: #aaa;
}
div.content form button.prev:hover {
  background: #e4e4e4;
  transition: all 0.2s;
}
div.content form button.next {
  background: #b92278;
  color: #fff;
}
div.content form button.next:hover {
  background: #a31e6a;
  transition: all 0.2s;
}
div.content form button[type=submit] {
  border-radius: 0;
  font-weight: 700;
  font-size: 20px;
  padding: 14px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
  width: 45%;
  margin: 0 5px;
  background: #b92278;
  color: #fff;
}
div.content form button[type=submit]:hover {
  background: #a31e6a;
  transition: all 0.2s;
}
div.content form button[type=submit][disabled] {
  background-color: #ececec;
  color: #aaa;
}
div.content form button[type=submit][disabled]:hover {
  background: #e4e4e4;
  transition: all 0.2s;
}
div.content form fieldset {
  display: none;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  transition: all 0.2s;
  text-align: left;
}
div.content form fieldset.active {
  display: block;
  transition: all 0.2s;
}
div.content form fieldset .field {
  display: block;
  margin-top: 20px;
  text-align: left;
}
div.content form fieldset .field:not(.last) {
  margin-bottom: 20px;
}
div.content form fieldset .field label span.req {
  color: red;
}
div.content form fieldset .field input[type=text],
div.content form fieldset .field input[type=email],
div.content form fieldset .field input[type=tel],
div.content form fieldset .field input[type=url],
div.content form fieldset .field input[type=password] {
  font-size: 16px;
  padding: 7px 10px;
  margin: 4px 0 0 0;
  width: 100%;
  color: #000;
  background: #f3f3f3;
  border: none;
  outline: none;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
div.content form fieldset .field input[type=text].error,
div.content form fieldset .field input[type=email].error,
div.content form fieldset .field input[type=tel].error,
div.content form fieldset .field input[type=url].error,
div.content form fieldset .field input[type=password].error {
  box-shadow: 0px 0px 7px -2px rgba(255,66,66,0.8);
-webkit-box-shadow: 0px 0px 7px -2px rgba(255,66,66,0.8);
-moz-box-shadow: 0px 0px 7px -2px rgba(255,66,66,0.8);
}
div.content form fieldset .field textarea {
  font-size: 16px;
  padding: 7px 10px;
  margin: 4px 0 0 0;
  width: 100%;
  resize: none;
  color: #000;
  background: #f3f3f3;
  border: none;
  outline: none;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
div.content form fieldset .field textarea.error {
  box-shadow: 0px 0px 7px -2px rgba(255,66,66,0.8);
-webkit-box-shadow: 0px 0px 7px -2px rgba(255,66,66,0.8);
-moz-box-shadow: 0px 0px 7px -2px rgba(255,66,66,0.8);
}
div.content form fieldset .field .checkbox-container {
  display: block;
  margin: 10px;
}
div.content form fieldset .field .checkbox-container input {
  display: none;
}
div.content form fieldset .field .checkbox-container .text {
  height: 24px;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  cursor: pointer;
}
div.content form fieldset .field .checkbox-container .text .check {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: #f3f3f3;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
div.content form fieldset .field .checkbox-container .text .check i {
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
  opacity: 0.3;
  color: #fff;
}
div.content form fieldset .field .checkbox-container input:checked + .text .check {
  animation: check 0.3s ease alternate forwards;
}
div.content form fieldset .field .checkbox-container input:checked + .text .check i {
  animation: check-icon 0.3s 0.15s ease alternate forwards;
}
div.content form fieldset .field .checkbox-container.image .text {
  position: relative;
}
div.content form fieldset .field .checkbox-container.image .text .check {
  position: absolute;
  top: 0;
  left: 0;
}
div.content form fieldset .field .radio-container {
  display: block;
  margin: 10px 0;
}
div.content form fieldset .field .radio-container input {
  display: none;
}
div.content form fieldset .field .radio-container .text {
  height: 24px;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  cursor: pointer;
}
div.content form fieldset .field .radio-container .text .radio {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #f3f3f3;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
div.content form fieldset .field .radio-container .text .radio i {
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
  opacity: 0.3;
  color: #fff;
}
div.content form fieldset .field .radio-container .text .radio.error {
  box-shadow: 0px 0px 7px -2px rgba(255,66,66,0.8);
-webkit-box-shadow: 0px 0px 7px -2px rgba(255,66,66,0.8);
-moz-box-shadow: 0px 0px 7px -2px rgba(255,66,66,0.8);
}
div.content form fieldset .field .radio-container input:checked + .text .radio {
  animation: check 0.3s ease alternate forwards;
}
div.content form fieldset .field .checkbox-grid .checkbox-container {
  display: inline-block;
  width: calc(100% - 20px);
  float: left;
  margin: 10px;
}
@media (min-width: 425px) {
  div.content form fieldset .field .checkbox-grid .checkbox-container {
    width: calc(50% - 20px);
  }
}
@media (min-width: 650px) {
  div.content form fieldset .field .checkbox-grid .checkbox-container {
    width: calc(33% - 20px);
  }
}
div.content form fieldset .field .checkbox-grid:after {
  display: block;
  content: "";
  clear: both;
}
div.content form fieldset .field p {
  font-size: 14px;
  margin: 0;
}
div.content form fieldset h2 {
  font-size: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
div.content .definition {
  margin: 20px;
  background: #f7f7f7;
  padding: 20px;
  text-align: left;
}
div.content .definition h3 {
  font-size: 24px;
  margin: 0;
}
div.content .definition h6 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  margin-top: 6px;
}
div.content .definition p {
  font-size: 14px;
}

/* Animations */
@keyframes check {
  0% {
    background: #f3f3f3;
    transform: scale(1);
  }
  25% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1.3);
  }
  75% {
    transform: scale(1);
  }
  100% {
    background: #2ECC40;
  }
}
@keyframes check-icon {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
