/*---------------------------------------------*\
    variables
\*---------------------------------------------*/
/*---------------------------------------------*\
    styles
\*---------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

.wrapper {
  min-height: 100%;
}

html {
  font-size: 16px;
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #002c3c;
  background-color: white;
  margin: 0;
}

small {
  font-size: .8rem;
}

h1 {
  display: inline-block;
  font-family: "Francois One", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 .8rem 0;
  border-bottom: 4px solid #31d47d;
}

p {
  margin: 0 0 2rem 0;
}

a {
  color: #31d47d;
  text-decoration: none;
}
a:focus, a:hover {
  color: #24ae64;
}

.text-muted, footer {
  color: #a9bec6;
}

.logo {
	padding-bottom: 100px;
    width: 300px;
}

.logo img {
    width: 100%;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-form {
  padding: 0 20px;
}

.form {
  display: block;
  width: 290px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label,
.form-input {
  display: block;
  width: 100%;
}

.form-label {
  cursor: pointer;
  margin-bottom: 5px;
}

.form-label--required {
  position: relative;
}
.form-label--required:before {
  content: "*";
  position: absolute;
  left: -10px;
  color: #f42866;
}

.form-input {
  padding: 10px;
  background-color: transparent;
  border: 0;
}
.form-input:focus {
  outline: none;
  background-color: #f0f7f9;
}

.form-footer {
    margin: 0 auto;
    width: 240px;
}

.form-footer img{
  width: 100%;
}

.form-error {
  color: #f42866;
  margin-top: 5px;
}

.button {
  color: white;
  white-space: nowrap;
  background-color: #3abc77e6;
  padding: 10px 40px;
  border: 0;
  border-radius: 2px;
  -webkit-transition: all 150ms ease-out;
  transition: all 150ms ease-out;
}
.button:focus, .button:hover {
  background-color: #219d5b;
}

.form-addon {
  position: relative;
  display: table;
  width: 100%;
  border: 1px solid #bcdae5;
  background-color: #fff;
  border-radius: 5px;
}
.form-addon .form-input,
.form-addon .form-addon__addon {
  display: table-cell;
  vertical-align: middle;
}
.form-addon .form-input {
  width: 100%;
}
.form-addon .form-addon__addon {
  position: relative;
  width: 40px;
  text-align: center;
}
.form-addon .form-addon__addon:before {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  height: calc(100% - 8px);
  border-right: 1px solid #bcdae5;
}

.form-addon__icon {
  position: absolute;
  color: #31d47d;
  font-size: .8rem;
  line-height: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
}

.toaster {
  position: fixed;
  z-index: 1;
  top: 10px;
  right: 10px;
}

.toast {
  color: #fff;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transform: translateY(-10px) rotateY(40deg);
          transform: translateY(-10px) rotateY(40deg);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.toast.toast--show {
  -webkit-transform: translateY(0) rotateY(0);
          transform: translateY(0) rotateY(0);
  opacity: 1;
}

.toast--success {
  background-color: #31d47d;
}

.toast--error {
  background-color: red;
}

footer {
  margin-top: 10px;
}

/*---------------------------------------------*\
    GentleForm related styles
\*---------------------------------------------*/
.form-addon .form-addon__icon {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 0;
  -webkit-transition: opacity 150ms ease, -webkit-transform 150ms ease;
  transition: opacity 150ms ease, -webkit-transform 150ms ease;
  transition: transform 150ms ease, opacity 150ms ease;
  transition: transform 150ms ease, opacity 150ms ease, -webkit-transform 150ms ease;
}
.form-addon.is-valid [class*="icon-valid"], .form-addon.is-invalid [class*="icon-invalid"] {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}
.form-addon.is-invalid {
  background-color: #fef4f7;
  border-color: #f989ab;
}
.form-addon.is-invalid .form-addon__icon {
  color: #f42866;
}
.form-addon.is-invalid .form-addon__addon:before {
  border-color: #f989ab;
}
