/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  font-size: 16px; }

body {
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #015e7e; }
  @media (min-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
      margin-bottom: 1rem; } }

p, ul, ol {
  margin-bottom: 1rem; }

h1 {
  font-size: 1.5rem; }
  @media (min-width: 768px) {
    h1 {
      font-size: 2rem; } }

.subtitle {
  display: block;
  text-transform: uppercase; }

* {
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  display: flex;
  min-height: 100%; }

.layout {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-image: url("bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: 50%; }
  @media (min-width: 768px) {
    .layout {
      padding: 60px 30px; } }
  .layout__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #4bbea0;
    background: -webkit-linear-gradient(left, #4bbea0, #015e7e);
    background: linear-gradient(90deg, #4bbea0, #015e7e);
    opacity: 0.9; }
  .layout__inner {
    position: relative;
    width: 100%;
    max-width: 650px; }

.form-item {
  position: relative;
  text-align: left; }
  .form-item:not(:last-child) {
    margin-bottom: 1.5rem; }
  .form-item__input {
    display: block;
    width: 100%;
    height: calc(3rem + 4px);
    border-radius: 5px;
    border: 2px solid #f2f2f2;
    background-color: #f2f2f2;
    transition: border-color 0.15s;
    padding: 1.5rem 0.75rem 0.2rem;
    line-height: 1.5rem;
    color: rgba(0, 0, 0, 0.5);
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    outline: 0 !important;
    box-shadow: none !important; }
    .form-item__input:focus, .form-item__input:active {
      border-color: #4bbea0 !important; }
  .form-item__label {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    line-height: 1.3rem;
    width: 100%;
    padding: 0 0.75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.75rem; }

.button {
  color: #fff;
  text-transform: uppercase;
  word-wrap: break-word;
  white-space: normal;
  cursor: pointer;
  border: 0;
  border-radius: .3rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  padding: .84rem 2.14rem;
  font-size: .81rem;
  background: #4bbea0;
  background: -webkit-linear-gradient(left, #4bbea0, #268e8f);
  background: linear-gradient(90deg, #4bbea0, #268e8f);
  font-family: "Montserrat", sans-serif; }
  .button:hover, .button:focus {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }

.card {
  width: 100%;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
  .card__section {
    padding: 1.5rem; }
    @media (min-width: 768px) {
      .card__section {
        padding: 2rem; } }
    .card__section:not(:last-child) {
      border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.steps {
  display: flex;
  align-items: center;
  flex-direction: row-reverse; }

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  color: #4bbea0;
  background-color: transparent; }
  .step__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: 2px solid;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    z-index: 1; }
  .step:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 0px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    transform: translate(-50%, -50%);
    color: inherit; }
  .step--inactive {
    color: rgba(0, 0, 0, 0.15); }

.logo {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 1.5rem; }

.button {
  color: #fff;
  text-transform: uppercase;
  word-wrap: break-word;
  white-space: normal;
  cursor: pointer;
  border: 0;
  border-radius: .3rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  padding: .84rem 2.14rem;
  font-size: .81rem;
  background: #4bbea0;
  background: -webkit-linear-gradient(left, #4bbea0, #268e8f);
  background: linear-gradient(90deg, #4bbea0, #268e8f);
  font-family: "Montserrat", sans-serif; }
  .button:hover, .button:focus {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }

.card {
  width: 100%;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
  .card__section {
    padding: 1.5rem; }
    @media (min-width: 768px) {
      .card__section {
        padding: 2rem; } }
    .card__section:not(:last-child) {
      border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.form-item {
  position: relative;
  text-align: left; }
  .form-item:not(:last-child) {
    margin-bottom: 1.5rem; }
  .form-item__input {
    display: block;
    width: 100%;
    height: calc(3rem + 4px);
    border-radius: 5px;
    border: 2px solid #f2f2f2;
    background-color: #f2f2f2;
    transition: border-color 0.15s;
    padding: 1.5rem 0.75rem 0.2rem;
    line-height: 1.5rem;
    color: rgba(0, 0, 0, 0.5);
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    outline: 0 !important;
    box-shadow: none !important; }
    .form-item__input:focus, .form-item__input:active {
      border-color: #4bbea0 !important; }
  .form-item__label {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    line-height: 1.3rem;
    width: 100%;
    padding: 0 0.75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.75rem; }

* {
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  display: flex;
  min-height: 100%; }

.layout {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-image: url("bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: 50%; }
  @media (min-width: 768px) {
    .layout {
      padding: 60px 30px; } }
  .layout__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #4bbea0;
    background: -webkit-linear-gradient(left, #4bbea0, #015e7e);
    background: linear-gradient(90deg, #4bbea0, #015e7e);
    opacity: 0.9; }
  .layout__inner {
    position: relative;
    width: 100%;
    max-width: 650px; }

.logo {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 1.5rem; }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.steps {
  display: flex;
  align-items: center;
  flex-direction: row-reverse; }

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  color: #4bbea0;
  background-color: transparent; }
  .step__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: 2px solid;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    z-index: 1; }
  .step:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 0px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    transform: translate(-50%, -50%);
    color: inherit; }
  .step--inactive {
    color: rgba(0, 0, 0, 0.15); }

html {
  font-size: 16px; }

body {
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #015e7e; }
  @media (min-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
      margin-bottom: 1rem; } }

p, ul, ol {
  margin-bottom: 1rem; }

h1 {
  font-size: 1.5rem; }
  @media (min-width: 768px) {
    h1 {
      font-size: 2rem; } }

.subtitle {
  display: block;
  text-transform: uppercase; }
