@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxP.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UN_r8OUuhs.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/opensans/v18/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UNirkOUuhs.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UN7rgOUuhs.ttf) format('truetype');
}
html,
body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #333;
  height: 100%;
}
body {
  padding: 0;
  position: relative;
  min-height: 100%;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #333;
}
.mute {
  color: #939393;
}
.btn {
  position: relative;
  display: inline-block;
  padding: 5px 24px;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  border: none;
  text-align: center;
  margin-bottom: 12px;
  cursor: pointer;
}
.btn:focus,
.btn:active {
  outline: none;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn.primary {
  background: #1EA7BA;
  border: 1px solid #1EA7BA;
  color: #fff;
  width: 200px;
  font-size: 14px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  line-height: 20px;
}
.btn.primary:hover {
  background: #20B3C8;
  border: 1px solid #20B3C8;
}
.btn.primary:active,
.btn.primary:focus {
  background: #20B3C8;
  border: 1px solid #20B3C8;
}
.btn.social {
  height: 40px;
  font-size: 14px;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 8px;
  font-weight: 500;
  padding: 0 0 0 0;
  display: block;
  color: #30465E;
  background: #F2F2F2;
}
.btn.social:hover {
  background: #E6E6E6;
}
.btn.social span {
  vertical-align: middle;
}
.btn.social .icon {
  vertical-align: middle;
  margin-right: 2px;
}
.btn.social .icon.facebook:before {
  display: inline-block;
  content: url('../../assets/fb-logo.svg');
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.btn.social .icon.google-plus:before {
  content: url('../../assets/google-logo.svg');
  display: inline-block;
  width: 20px;
  height: 22px;
  vertical-align: middle;
}
.btn.social .icon.apple:before {
  content: url('../../assets/apple-logo.svg');
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.gingerAuth-spinner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  display: none;
}
.gingerAuth-spinner.active {
  display: block;
  animation: fadeIn 0.4s;
}
.gingerAuth-spinner-svg {
  animation: rotator 3s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  height: 120px;
  width: 120px;
  border-radius: 120px;
  z-index: 1;
}
.gingerAuth-spinner-svg-path {
  stroke: #23B0CB;
  stroke-width: 3;
  stroke-dasharray: 195;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 3s ease-in-out infinite;
}
@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 47;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
.gingerAuth-separator {
  border-top: 1px solid #E7E7E7;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
}
.gingerAuth-separator span {
  position: relative;
  line-height: 20px;
  top: -10px;
  display: inline-block;
  background: white;
  padding: 0 10px;
  color: #868686;
}
.gingerAuth-input-container {
  position: relative;
}
.gingerAuth-input {
  width: 100%;
  display: block;
  border-radius: 4px;
  font-size: 14px;
  line-height: 18px;
  color: #30465E;
  margin-bottom: 8px;
  padding: 10px 10px;
  border: 1px solid #BFBFBF;
}
.gingerAuth-input:active,
.gingerAuth-input:focus {
  border: 1px solid #1EA7BA;
  background: #FFFFFF;
  outline: none;
}
.gingerAuth-input.ng-invalid.ng-dirty.ng-not-empty.ng-touched {
  border: 1px solid #bfaaa9;
  background: rgba(184, 36, 24, 0.05);
}
.gingerAuth-input::placeholder {
  font-weight: 400;
  color: #787878;
}
.gingerAuth-input-container label.error {
  color: #d63737;
  opacity: 1;
  display: none;
  margin-bottom: 8px;
}
.gingerAuth-input-container label.placeholder {
  cursor: text;
}
.gingerAuth-input-container input.ng-invalid.ng-dirty.ng-not-empty.ng-touched ~ label.placeholder {
  display: none;
}
.gingerAuth-input-container input.ng-invalid.ng-dirty.ng-not-empty.ng-touched ~ label.error {
  display: block;
}
.gingerAuth-input-container input.ng-invalid.ng-dirty.ng-not-empty.ng-touched:focus ~ label.placeholder {
  display: block;
}
.gingerAuth-input-container input.ng-invalid.ng-dirty.ng-not-empty.ng-touched:focus ~ label.error {
  display: none;
}
.gingerAuth-input:valid ~ label.placeholder,
.gingerAuth-input.ng-not-empty ~ label.placeholder,
label.error {
  top: 4px;
  font-size: 12px;
}
.gingerAuth-input-container input::placeholder {
  color: #787878;
}
.gingerAuth-connect-accounts {
  width: 360px;
}
.gingerAuth-connect-accounts p {
  margin: 0 0 30px 0;
  font-size: 14px;
  line-height: 24px;
  color: #3D3D3D;
  text-align: center;
}
.gingerAuth-connect-accounts .btn.social {
  left: 50%;
  margin-left: -180px;
  width: 360px;
  height: 40px;
  color: #30465E;
  font-size: 14px;
}
.gingerAuth-form-terms {
  font-size: 12px;
  color: #787878;
}
.gingerAuth-form-terms a {
  color: #787878;
  font-weight: 400;
  text-decoration: underline;
}
.gingerAuth-form-checkbox {
  margin-top: 12px;
  min-height: 24px;
}
.gingerAuth-form-checkbox label {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #787878;
}
.gingerAuth-form-checkbox input[type="checkbox"] {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border: 1px solid #787878;
  border-radius: 4px;
  margin-left: 0;
  margin-right: 8px;
  margin-top: 0;
}
.gingerAuth-back {
  font-size: 15px;
  color: #888;
  text-decoration: none;
}
.gingerAuth-back:hover {
  text-decoration: underline;
}
.gingerAuth-error {
  font-size: 13px;
  color: #d63737;
  text-align: center;
  line-height: 22px;
  background: rgba(184, 36, 24, 0.06);
  border: 1px solid #bfaaa9;
  padding: 15px 30px;
  margin-top: 15px;
  border-radius: 4px;
}
.gingerAuth-body {
  padding: 40px 0 0;
}
.gingerAuth-form {
  text-align: center;
}
.gingerAuth-form h2 {
  text-align: center;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 14px;
}
.gingerAuth-form-header img {
  max-width: 100%;
  margin-bottom: 64px;
}
.gingerAuth-form-link {
  margin-top: 15px;
  font-size: 13px;
  color: #787878;
  text-align: center;
  line-height: 20px;
}
.gingerAuth-form-link a {
  color: #787878;
  text-decoration: underline;
}
.gingerAuth-form-link a:hover {
  color: #686868;
}
.gingerAuth-form-link a.gingerAuth-form-link-noul {
  text-decoration: none;
}
.gingerAuth-form-link a.gingerAuth-form-link-noul span {
  text-decoration: underline;
}
.gingerAuth-main .btn {
  cursor: pointer;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gingerAuth-form {
  font-family: "Open Sans", Helvetica, "Helvetica Neue", Arial, sans-serif;
  max-width: 740px;
  margin: 0 auto 0 auto;
  background: transparent;
}
.gingerAuth-form-login .gingerAuth-input-container .btn.primary {
  margin-top: 15px;
  margin-bottom: 15px;
}
.gingerAuth-form-register .gingerAuth-input-container .btn.primary {
  margin-top: 7px;
  margin-bottom: 15px;
}
.gingerAuth-form-login .gingerAuth-input-container .gingerAuth-form-checkbox {
  clear: both;
}
.gingerAuth-form-login .gingerAuth-input-container .gingerAuth-form-checkbox input {
  float: left;
}
.gingerAuth-form-login .gingerAuth-input-container .gingerAuth-form-checkbox label {
  float: left;
}
.gingerAuth-form-login .gingerAuth-input-container .gingerAuth-form-checkbox a {
  float: right;
  font-size: 14px;
  line-height: 20px;
  color: #787878;
}
.gingerAuth-form-login .gingerAuth-input-container .gingerAuth-error {
  clear: both;
}
.gingerAuth-form-header h1 {
  margin: 0;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #3D3D3D;
}
.gingerAuth-form-header p {
  font-size: 20px;
  line-height: 20px;
  margin: 0;
}
.gingerAuth-form-or-separator {
  position: relative;
  margin-top: 18px;
  margin-bottom: 19px;
  line-height: 12px;
}
.gingerAuth-form-or-separator hr {
  position: absolute;
  width: 100%;
  border: none;
  height: 1px;
  color: #D9D9D9;
  background-color: #D9D9D9;
}
.gingerAuth-form-or-separator span {
  background: #fff;
  display: inline-block;
  position: relative;
  width: 90px;
  color: #787878;
  font-size: 14px;
}
.gingerAuth-form-body {
  max-width: 360px;
  margin: 0 auto 0 auto;
}
.gingerAuth-form-question {
  font-size: 13px;
  color: #787878;
  margin-top: 0;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 20px;
}
.gingerAuth-form-register p a {
  color: #888;
}
.gingerAuth-form-register p a {
  text-decoration: underline;
}
.gingerAuth-form-nav a {
  display: block;
  color: #787878;
  margin-bottom: 39px;
  font-size: 13px;
  line-height: 20px;
  text-decoration-line: underline;
}
.gingerAuth-form-nav a:hover {
  text-decoration: underline;
}
.gingerAuth-form-password-reset {
  margin-top: 30px;
}
.gingerAuth-input-container .btn.primary {
  margin: 32px 0;
  width: 100%;
  max-width: 360px;
  height: 40px;
}
.gingerAuth-form-password-reset .gingerAuth-input-container .btn.primary {
  margin-bottom: 15px;
  margin-top: 7px;
}
.postinstall-oauth {
  text-align: center;
  color: #000;
  font-size: 20px;
}
.postinstall-oauth-title {
  font-size: 28px;
  font-weight: bold;
}
.postinstall-oauth .button {
  display: inline-block;
  padding: 12px 36px;
  background: #00abbb;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  margin: 40px 0 60px;
}
.postinstall-oauth a {
  color: #00abbb;
  text-decoration: none;
}
.postinstall-oauth-install {
  font-size: 16px;
}
@media only screen and (max-width: 488px) {
  .btn.social {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .gingerAuth-form-nav a {
    margin-bottom: 8px;
  }
  .gingerAuth-form-header p {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .gingerAuth-error {
    padding: 8px 22px;
  }
}
@media only screen and (max-width: 500px) {
  .gingerAuth-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gingerAuth-body {
    padding: 45px 0 0;
  }
}
