html {
  width: 100%;
  height: 100%;
  min-width: 320px;
  font-size: 14px; }
  @media (min-width: 576px) {
    html {
      font-size: 16px; } }

* {
  font-family: "Open Sans", "Roboto", sans-serif;
  font-weight: 500; }

.container {
  min-height: 100vh;
  height: auto;
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
  color: #212529; }
  @media (min-width: 960px) {
    .container {
      background-image: url("/assets/img/startup.jpg");
      background-repeat: no-repeat;
      background-size: cover; } }
  @media (min-width: 960px) {
    .container {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: stretch;
      -webkit-align-items: stretch;
          -ms-flex-align: stretch;
              align-items: stretch; } }
  .container__card {
    width: 100%;
    min-height: 100vh;
    min-width: 320px; }
    @media (min-width: 960px) {
      .container__card {
        max-width: 600px; } }

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-Regular.eot");
  src: url("/assets/fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/OpenSans-Regular.woff2") format("woff2"), url("/assets/fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-SemiBold.eot");
  src: url("/assets/fonts/OpenSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/OpenSans-SemiBold.woff2") format("woff2"), url("/assets/fonts/OpenSans-SemiBold.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-Light.eot");
  src: url("/assets/fonts/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/OpenSans-Light.woff2") format("woff2"), url("/assets/fonts/OpenSans-Light.woff") format("woff");
  font-weight: lighter;
  font-style: normal; }

.input {
  position: relative; }
  .input::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: #039be0;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 3; }
  .input_focus::before {
    height: 100%; }
  .input__label {
    position: absolute;
    top: 0.7rem;
    left: 1rem;
    z-index: 3;
    color: #8c8c8c;
    font-size: 0.8rem;
    font-weight: lighter; }
  .input__input {
    color: #212529;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.1rem;
    background-color: transparent;
    border: 1px solid rgba(140, 140, 140, 0.2);
    padding: 2rem 1rem 0.7rem 1rem;
    position: relative;
    outline: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
    .input__input::-webkit-input-placeholder {
      color: #8c8c8c; }
    .input__input::-moz-placeholder {
      color: #8c8c8c; }
    .input__input:-ms-input-placeholder {
      color: #8c8c8c; }
    .input__input::-ms-input-placeholder {
      color: #8c8c8c; }
    .input__input::placeholder {
      color: #8c8c8c; }
    .input__input:invalid {
      outline: none;
      border: 1px solid rgba(249, 28, 63, 0.8); }
    .input__input:invalid + .input__label {
      color: rgba(249, 28, 63, 0.8);
      font-weight: 500; }
    .input__input:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.26);
      margin: 0; }

.link {
  color: #212529;
  text-decoration: none; }
  .link::after {
    content: "?";
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s; }
  .link:focus, .link:hover {
    outline: none; }
    .link:focus::after, .link:hover::after {
      opacity: 1; }

input[type="checkbox"]:checked,
input[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
  top: 0; }

input[type="checkbox"]:checked + label,
input[type="checkbox"]:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  line-height: 20px;
  cursor: pointer;
  color: #a6a6a6;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s; }
  input[type="checkbox"]:checked + label:hover,
  input[type="checkbox"]:not(:checked) + label:hover {
    color: #737373; }

input[type="checkbox"]:checked + label {
  color: #737373; }

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 1px;
  width: 0.9rem;
  height: 0.9rem;
  overflow: hidden;
  border: 2px solid #a6a6a6;
  border-radius: 0.2rem; }

input[type="checkbox"]:checked + label:before {
  background-color: #039be0;
  border-color: #039be0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease; }

input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  left: 2px;
  top: 5px;
  width: 11px;
  height: 5px;
  border-radius: 1px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }

input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0; }

input[type="checkbox"]:checked + label:after {
  opacity: 1; }

div.BDC_CaptchaDiv {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  div.BDC_CaptchaDiv .BDC_CaptchaImageDiv {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: auto !important; }
    div.BDC_CaptchaDiv .BDC_CaptchaImageDiv .BDC_CaptchaImageDiv {
      width: 100% !important;
      height: auto !important; }
      div.BDC_CaptchaDiv .BDC_CaptchaImageDiv .BDC_CaptchaImageDiv > img {
        display: block;
        width: 100%;
        height: auto;
        min-height: 54px; }
      div.BDC_CaptchaDiv .BDC_CaptchaImageDiv .BDC_CaptchaImageDiv > a {
        display: none !important; }
  div.BDC_CaptchaDiv .BDC_CaptchaIconsDiv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 0.5rem; }
    div.BDC_CaptchaDiv .BDC_CaptchaIconsDiv a {
      display: -webkit-inline-box !important;
      display: -webkit-inline-flex !important;
      display: -ms-inline-flexbox !important;
      display: inline-flex !important; }
      div.BDC_CaptchaDiv .BDC_CaptchaIconsDiv a img {
        display: block; }

.alert {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  color: #852d12;
  background-color: #ffddd3;
  padding: 0.75rem 4rem 0.75rem 1.25rem;
  margin-bottom: 1rem;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  position: relative; }
  .alert.inactive {
    display: none; }
  .alert ul {
    margin: 0;
    padding: 0;
    list-style-type: none !important; }
  .alert__close {
    color: #852d12;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    background-color: transparent;
    font-size: 1.5rem;
    line-height: 0.8;
    font-weight: bold;
    opacity: 0.5;
    border: none; }
    .alert__close:focus {
      outline: none;
      color: #000;
      opacity: 0.7; }
    .alert__close:hover {
      color: #000;
      opacity: 0.7; }

.button {
  position: relative;
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  background-color: #212529;
  border: 0;
  border-radius: 0.125rem;
  padding: 0.46875rem 2rem;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none; }
  .button__img {
    height: 1.2rem;
    position: relative;
    width: 1.2rem;
    margin-left: 5px; }
  .button:hover {
    -webkit-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.6); }
  .button_outlined {
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: transparent;
    color: #8c8c8c;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #8c8c8c; }
    .button_outlined:hover {
      -webkit-box-shadow: none;
              box-shadow: none;
      text-decoration: underline; }

.login-with {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .login-with__title {
    margin: 0;
    font-size: 1rem;
    color: #212529;
    margin-right: 1.5rem;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin-bottom: 1rem; }
    @media (min-width: 576px) {
      .login-with__title {
        -webkit-flex-basis: auto;
            -ms-flex-preferred-size: auto;
                flex-basis: auto;
        margin-bottom: 0; } }
  .login-with__button {
    margin-right: 1rem; }

.card {
  border: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f5f5f5;
  font-size: 0.875rem;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (min-width: 576px) {
    .card {
      padding: 3rem; } }
  @media (min-width: 960px) {
    .card {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .card iframe {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden; }
  .card ul {
    list-style: none; }
  .card__header {
    text-align: left;
    margin-bottom: 1rem;
    max-width: 504px; }
    .card__header__title {
      margin: 0 0 0.5rem 0;
      font-size: 2rem;
      color: #727d84; }
      @media (min-width: 960px) {
        .card__header__title {
          font-size: 2rem; } }
      .card__header__title__orange {
        color: #f47929; }
    .card__header__subtitle {
      color: #8c8c8c;
      font-size: 18px;
      margin-bottom: 0;
      margin-top: 0; }
  .card__body {
    max-width: 504px; }
    .card__body__input-group {
      -webkit-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.3);
              box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.3); }
      .card__body__input-group .input:last-child {
        margin-top: -1px; }
    .card__body__remember-forgot-group {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .card__body__remember-forgot-group label {
        margin-right: auto; }
    .card__body__group {
      margin-top: 1.75rem;
      margin-bottom: 1rem;
      width: 100%; }
      .card__body__group_button {
        margin-top: 3rem; }
  .card__footer {
    text-align: center;
    background-color: #f5f5f5; }
