@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../../fonts/Nunito/Nunito-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
:root {
  --main-font: rgba(0, 0, 0, 0.87);
  --container-bg-1: #ffffff;
  --form-txt: rgba(0, 0, 0, 0.60);
  --form-bd: rgba(0, 0, 0, 0.28);
  --btn-disabled-txt: #6d6d6d;
  --btn-disabled-bg: #cccccc;
  --danger: #ff483f;
  --neutral: #757575;
  --input-height: 40px;
  --input-label-size: 1rem;
}

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, 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: inherit;
  vertical-align: baseline;
}

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

html, body {
  display: flex;
  flex-direction: column;
  font-size: 100%;
  line-height: 1rem;
  color: var(--main-font);
  height: 100%;
  min-height: auto !important;
  font-family: "Nunito", "Arial", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

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;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

*, ::after, ::before {
  box-sizing: border-box;
}

[ng\:cloak], [ng-cloak], .ng-cloak {
  display: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  border: 2px solid #2F6BFF;
  border-radius: 30px;
  -webkit-text-fill-color: var(--main-font);
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}

::-moz-selection {
  color: #fff;
  background: #2F6BFF;
}

::selection {
  color: #fff;
  background: #2F6BFF;
}

h1 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375rem;
  letter-spacing: 0.02rem;
}

h2 {
  font-size: 0.938rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: 0.02rem;
}

h3, h4, h5, h6 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.125rem;
  letter-spacing: 0.01rem;
}

p {
  font-size: 0.813rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: normal;
}

.form-container {
  display: flex;
  flex-direction: column;
}

.form-field {
  cursor: text;
  display: inline-flex;
  position: relative;
  outline: none;
  height: var(--input-height);
}
.form-field .form-field__icon {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.54);
}
.form-field .form-field__label {
  cursor: inherit;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: auto;
  left: 12px;
  font-size: var(--input-label-size);
  font-weight: 400;
  letter-spacing: 0.4px;
  text-align: left;
  color: var(--form-txt);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  padding-right: 24px;
  transform: translateY(-50%);
  transform-origin: left top;
  transition: all 150ms ease;
}
.form-field.form-field--suffix-icon .form-field__icon {
  right: 12px;
  left: auto;
}
.form-field.form-field--suffix-icon .suffix-icon {
  right: 12px !important;
  left: auto !important;
}
.form-field.form-field--suffix-icon .form-control {
  padding-right: 40px;
}
.form-field.form-field--suffix-icon .form-field__icon ~ .form-field__icon {
  right: 12px;
  left: auto;
}
.form-field.form-field--error .form-control {
  color: var(--danger) !important;
  caret-color: var(--danger);
}
.form-field.form-field--error .form-outline .form-field__label,
.form-field.form-field--error .form-field__icon {
  color: var(--danger);
}
.form-field.form-field--error .form-outline .form-outline__prefix, .form-field.form-field--error .form-outline__middle, .form-field.form-field--error .form-outline__suffix,
.form-field.form-field--error .form-outline.form-outline--active .form-outline__prefix, .form-field.form-field--error .form-outline__middle, .form-field.form-field--error .form-outline__suffix,
.form-field.form-field--error .form-select__dropdown {
  border-color: var(--danger) !important;
}
.form-field.form-field--disabled .form-field__icon {
  font-size: 0.813rem !important;
  top: 21px;
}
.form-field.form-field--active.form-field--disabled .form-field__icon {
  top: 21px;
}

.form-control {
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  font-family: "Nunito", "Arial", sans-serif;
  font-size: var(--input-label-size);
  font-weight: 400;
  line-height: 1.5;
  border: 0;
  border-radius: 0;
  color: var(--main-font) !important;
  caret-color: var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  background-color: transparent;
}
.form-control:disabled, .form-control[readonly] {
  padding-top: 12px;
  padding-bottom: 0px;
  background-color: transparent;
}
.form-control:disabled ~ .form-outline .form-outline__prefix, .form-control:disabled ~ .form-outline .form-outline__suffix, .form-control[readonly] ~ .form-outline .form-outline__prefix, .form-control[readonly] ~ .form-outline .form-outline__suffix {
  background-color: rgba(0, 0, 0, 0.03);
}
.form-control:disabled ~ .form-outline.form-outline--active .form-field__label, .form-control[readonly] ~ .form-outline.form-outline--active .form-field__label {
  top: 1px !important;
  background: #f7f7f7;
}
.form-control:disabled ~ .form-select__wrapper, .form-control[readonly] ~ .form-select__wrapper {
  padding-top: 12px;
  padding-bottom: 0px;
}

.form-outline {
  display: flex;
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.form-outline .form-outline__prefix, .form-outline .form-outline__middle, .form-outline .form-outline__suffix {
  height: 100%;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.form-outline .form-outline__prefix {
  width: 12px;
  border-right: 0;
  border-left: 1px solid;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-color: var(--form-bd);
}
.form-outline .form-outline__middle {
  width: auto;
  flex: 0 0 auto;
  max-width: calc(100% - 24px);
  border-color: var(--form-bd);
}
.form-outline .form-outline__suffix {
  flex-grow: 1;
  border-right: 1px solid;
  border-left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-color: var(--form-bd);
}
.form-outline.form-outline--active .form-field__label {
  z-index: 1;
  top: -8px !important;
  left: 8px;
  padding: 0 4px;
  max-width: 133.3333333333%;
  background-color: var(--container-bg-1);
  transform: scale(0.82) !important;
}
.form-outline.form-outline--active .form-outline__middle {
  padding-top: 1px;
  border-top: 0;
}
.form-outline.form-outline--focus .form-field__label {
  color: var(--primary);
}
.form-outline.form-outline--focus .form-outline__prefix, .form-outline.form-outline--focus .form-outline__middle, .form-outline.form-outline--focus .form-outline__suffix {
  border-width: 2px;
  border-color: var(--primary);
}

.form-support {
  display: flex;
  justify-content: space-between;
  padding-right: 12px;
  padding-left: 12px;
}
.form-support .form-support__help-message {
  font-size: 12px;
  letter-spacing: 0.4px;
}
.form-support .form-support__help-message::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 13px;
  vertical-align: 0;
}
.form-support .form-support__error-message {
  color: var(--danger);
  font-size: 12px;
  letter-spacing: 0.4px;
}
.form-support .form-support__error-message::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 16px;
  vertical-align: 0;
}

.btn-action {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  min-width: 64px;
  height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  font-family: "Nunito", "Arial", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.04rem;
  vertical-align: middle;
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: transparent;
}
@media screen and (min-width: 576px) {
  .btn-action {
    width: auto;
    margin-bottom: 0;
  }
}
.btn-action:not(:disabled) .btn-action__underlay {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.btn-action:not(:disabled) .btn-action__underlay:before, .btn-action:not(:disabled) .btn-action__underlay:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  opacity: 0;
  width: 200%;
  height: 200%;
  background-color: #ffffff;
  border-radius: 50%;
}
.btn-action:not(:disabled) .btn-action__underlay:before {
  z-index: 1;
  transition: opacity 90ms linear;
}
.btn-action:not(:disabled) .btn-action__underlay:after {
  transform: scale(0);
  transform-origin: center center;
  transition: transform 50ms linear, opacity 50ms linear;
}
.btn-action:not(:disabled) .btn-action__underlay:hover.btn-action__underlay:before {
  opacity: 0.1;
}
.btn-action:not(:disabled) .btn-action__underlay:active.btn-action__underlay:after {
  opacity: 0.24;
  transform: scale(1);
}
.btn-action:not(:disabled):hover, .btn-action:not(:disabled):focus {
  outline: none;
}
.btn-action:not(:disabled):hover .btn-action__underlay:before, .btn-action:not(:disabled):focus .btn-action__underlay:before {
  opacity: 0.1;
}
.btn-action:disabled {
  cursor: default;
  color: var(--btn-disabled-txt) !important;
}
.btn-action.btn-action--contain {
  box-shadow: box-shadow(1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-action.btn-action--contain:not(:disabled):hover, .btn-action.btn-action--contain:not(:disabled):focus {
  box-shadow: box-shadow(2);
}
.btn-action.btn-action--contain:disabled {
  background-color: var(--btn-disabled-bg) !important;
  box-shadow: none;
}

.btn-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30px;
  min-width: 30px;
  height: 30px;
  padding: 0;
  font-size: 16px;
  border: 0;
  outline: none;
  background: none;
  box-shadow: none;
  color: var(--neutral);
  border-radius: 50%;
}
.btn-icon:before, .btn-icon:after {
  content: "" !important;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  background-color: #9e9e9e;
  border-radius: 50%;
}
.btn-icon:before {
  z-index: 1;
  transition: opacity 90ms linear;
}
.btn-icon:after {
  transform: scale(0);
  transform-origin: center center;
  transition: transform 90ms linear, opacity 90ms linear;
}
.btn-icon:hover.btn-icon:before, .btn-icon:focus.btn-icon:before {
  opacity: 0.2;
}
.btn-icon:active.btn-icon:after {
  opacity: 0.24;
  transform: scale(1);
}
.btn-icon:focus {
  outline: none;
}
.btn-icon:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.d-none {
  display: none !important;
}

.login-wrapper {
  display: flex;
  flex: 1;
  background: linear-gradient(to bottom, #2544c4 65%, #2b4bce 100%);
}

.login-content {
  position: relative;
  z-index: 2;
}
.login-content__v-wave {
  position: absolute;
  top: 0;
  left: 100%;
  width: auto;
  height: 100%;
}
.login-content__v-wave path {
  fill: #ffffff;
}
.login-content__h-wave {
  display: none;
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
}
.login-content__h-wave path {
  fill: #ffffff;
}

.login-box {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 120px;
  background-color: #ffffff;
}
.login-box__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 450px;
}
.login-box__copy {
  font-size: 0.75rem;
  color: #5C6469;
  font-weight: 500;
}

.logo-turion {
  width: 280px;
  height: auto;
}

.logo-client {
  width: 120px;
  height: auto;
}

.login-form {
  width: 450px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 60px 0;
}
.login-form__title {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.login-form__title .btn-icon {
  margin-right: 8px;
}
.login-form__title .btn-icon svg {
  width: 14px;
  fill: #5C6469;
}
.login-form__title h1 {
  font-family: inherit;
  font-size: 1.063rem;
  font-weight: 700;
  letter-spacing: normal;
  color: #5C6469;
}
.login-form__message {
  font-family: inherit;
  font-size: 0.938rem;
  font-weight: 500;
  letter-spacing: normal;
  margin-bottom: 25px;
  color: #5C6469;
}
.login-form__message > br {
  display: none;
}
.login-form__warning {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.login-form__warning svg {
  width: 18px;
  background-color: #f00;
  fill: #ffd1d1;
  border-radius: 50%;
}
.login-form__warning p {
  font-weight: normal;
  color: #f00;
  font-size: 13px;
  margin-left: 3px;
  margin-top: 2px;
}
.login-form__warning p > br {
  display: none;
}
.login-form__warning #success-icon {
  display: none;
}
.login-form__warning--success svg {
  fill: #2f6bff;
}
.login-form__warning--success p {
  color: #2f6bff;
}
.login-form__warning--success #success-icon {
  display: block;
}
.login-form__warning--success #error-icon {
  display: none;
}
.login-form__success {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.login-form__success svg {
  width: 18px;
  fill: #ff3a3a;
  margin-right: 10px;
}
.login-form__success p {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff3a3a;
}
.login-form__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-form__back {
  font-size: 0.938rem;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
  color: #5C6469;
}
.login-form__back .btn-icon {
  margin-right: 8px;
}
.login-form__back .btn-icon svg {
  width: 14px;
  fill: #5C6469;
}
.login-form__submit {
  background-color: #2F6BFF;
  color: #FFFFFF;
  min-width: 130px;
  height: 45px;
  font-family: "Nunito", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 1px 7px 1px rgba(106, 149, 255, 0.4) !important;
}
.login-form__submit .btn-action__underlay {
  border-radius: 30px !important;
}
.login-form__forgot-password {
  cursor: pointer;
  font-family: "Nunito", "Arial", sans-serif;
  font-size: 0.938rem;
  margin-left: auto;
  font-weight: 700;
  color: #5C6469;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  transition: color 0.1s ease-in-out;
}
.login-form__forgot-password:hover, .login-form__forgot-password:focus {
  color: #2F6BFF;
}

.form-field {
  height: 45px;
}
.form-field .form-field__label {
  left: 25px;
  font-size: 1rem;
  font-weight: 600;
}
.form-field.form-field--suffix-icon .form-field__icon {
  right: 0;
}
.form-field.form-field--suffix-icon .form-control {
  padding-right: 60px;
}
.form-field .form-field__icon {
  cursor: pointer;
  pointer-events: auto;
  background: none;
  border: none;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  outline: none;
  width: 60px;
  height: 100%;
  padding: 0;
}
.form-field .form-field__icon svg {
  width: 21px;
  fill: #5C6469;
  transition: fill 0.1s ease-in-out;
}
.form-field .form-field__icon:hover svg {
  fill: #2F6BFF;
}
.form-field .form-field__icon:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.form-control {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 1rem;
  caret-color: #2F6BFF;
  color: #5C6469;
}
.form-control:disabled ~ .form-outline.form-outline--active .form-field__label, .form-control[readonly] ~ .form-outline.form-outline--active .form-field__label {
  top: 6px !important;
}

.form-outline .form-outline__prefix {
  width: 25px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-color: #d1dbe3;
}
.form-outline .form-outline__middle {
  border-color: #d1dbe3;
}
.form-outline .form-outline__suffix {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-color: #d1dbe3;
}
.form-outline.form-outline--active .form-field__label {
  color: #5C6469;
  left: 24px;
}
.form-outline.form-outline--focus .form-outline__prefix, .form-outline.form-outline--focus .form-outline__middle, .form-outline.form-outline--focus .form-outline__suffix {
  border-color: #2F6BFF;
}
.form-outline.form-outline--focus .form-field__label {
  color: #2F6BFF;
}

.form-support {
  padding-left: 25px;
  padding-right: 25px;
}
.form-support .form-support__error-message {
  font-size: 0.813rem;
}

.form-container {
  margin-bottom: 1rem;
}

.btn-action {
  margin: 0 !important;
}
.btn-action svg {
  display: none;
}
.btn-action:disabled .btn-action__label {
  display: none;
}
.btn-action:disabled svg {
  display: block;
}
.btn-action.btn-action--contain:disabled {
  background-color: #7298f5 !important;
}

.login-illustrations {
  position: relative;
  flex: 1 1 auto;
  z-index: 0;
  overflow: hidden;
}

.login-phrase {
  --login-phrase-top: 120px;
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 8%;
  text-align: center;
  -webkit-animation: fadeUpPhrase ease 1.5s forwards;
  animation: fadeUpPhrase ease 1.5s forwards;
}
.login-phrase .login-phrase__image {
  opacity: 0;
  width: 90px;
  height: auto;
  -webkit-animation: fadeUpPhrase ease 1.5s forwards;
  animation: fadeUpPhrase ease 1.5s forwards;
}
.login-phrase .login-phrase__title {
  font-family: "Nunito", "Arial", sans-serif;
  font-size: 2.281rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  opacity: 0;
  color: #FFFFFF;
  text-transform: lowercase;
  margin: 5px 0;
  -webkit-animation: fadeUpPhrase ease 1.5s forwards 500ms;
  animation: fadeUpPhrase ease 1.5s forwards 500ms;
}
.login-phrase .login-phrase__message {
  opacity: 0;
  font-size: 1.419rem;
  font-weight: 100;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #FFFFFF;
  text-transform: lowercase;
  -webkit-animation: fadeUpPhrase ease 1.5s forwards 700ms;
  animation: fadeUpPhrase ease 1.5s forwards 700ms;
}
.login-phrase .login-phrase__message + .login-phrase__message {
  font-size: 0.994rem;
  -webkit-animation: fadeUpPhrase ease 1.5s forwards 900ms;
  animation: fadeUpPhrase ease 1.5s forwards 900ms;
}

.login-vetor__map {
  position: absolute;
  top: -20%;
  width: 110%;
  height: auto;
  opacity: 0.3;
  left: 50%;
  transform: translateX(-50%);
}
.login-vetor__arrow {
  position: absolute;
  bottom: 0px;
  left: -20px;
  width: 100%;
  height: auto;
  transform: rotate(-5deg);
  transform-origin: bottom left;
}
.login-vetor__arrow #arrow-body {
  opacity: 0;
  stroke-dasharray: 725;
  stroke-dashoffset: 725;
  -webkit-animation: arrowDraw 3s ease-out forwards;
  animation: arrowDraw 3s ease-out forwards;
}
.login-vetor__arrow #arrow-head {
  opacity: 0;
  stroke-dasharray: 725;
  stroke-dashoffset: 725;
  -webkit-animation: arrowDraw 135ms linear forwards 2.7s;
  animation: arrowDraw 135ms linear forwards 2.7s;
}
.login-vetor__dollar {
  position: absolute;
  bottom: var(--position-y);
  left: 38%;
  width: 3%;
  height: auto;
  opacity: 0;
  -webkit-animation: fadeUp ease 13s forwards infinite;
  animation: fadeUp ease 13s forwards infinite;
}
.login-vetor__wifi {
  position: absolute;
  bottom: var(--position-y);
  right: 9%;
  width: 5%;
  height: auto;
  opacity: 0;
  -webkit-animation: fadeUp ease 13s forwards 500ms infinite;
  animation: fadeUp ease 13s forwards 500ms infinite;
}
.login-vetor__building {
  position: absolute;
  bottom: -10px;
  left: 10px;
  width: 100%;
  height: auto;
}
.login-vetor__building .build-windows-group path {
  -webkit-animation: windowsBlink ease forwards infinite;
  animation: windowsBlink ease forwards infinite;
}

@media (max-width: 1440px) {
  .login-box {
    padding: 60px 70px;
  }
  .login-phrase {
    --login-phrase-top: 60px;
  }
}
@media (max-width: 1200px) {
  .login-phrase .login-phrase__title {
    font-size: 1.875rem;
  }
  .login-phrase .login-phrase__message {
    font-size: 1.156rem;
  }
  .login-phrase .login-phrase__message + .login-phrase__message {
    font-size: 0.8rem;
  }
  .login-vetor__map {
    width: 180%;
    right: -60%;
  }
  .login-vetor__dollar {
    --position-y: 18%!important;
    left: 40%;
  }
  .login-vetor__wifi {
    --position-y: 14%!important;
  }
}
@media (max-width: 992px) {
  .login-wrapper {
    flex-wrap: wrap;
  }
  .login-box {
    align-items: center;
    padding: 0 100px 30px;
  }
  .login-box__footer {
    width: auto;
    flex-direction: column;
    align-items: center;
  }
  .login-box__copy {
    margin-top: 12px;
    font-size: 0.563rem;
  }
  .login-form {
    width: 100%;
    max-width: 450px;
    padding: 40px 0;
  }
  .login-form__title {
    margin-bottom: 5px;
    justify-content: center;
  }
  .login-form__title .btn-icon {
    margin-left: -30px;
  }
  .login-form__title h1 {
    font-size: 1rem;
  }
  .login-form__message {
    font-size: 0.813rem;
    line-height: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
  }
  .login-form__action {
    flex-wrap: wrap;
  }
  .login-form__warning {
    justify-content: center;
  }
  .login-form__warning p {
    font-size: 0.813rem;
  }
  .login-form__submit {
    order: 2;
    width: 100%;
    font-size: 0.938rem;
  }
  .login-form__forgot-password {
    order: 1;
    margin-top: -6px;
    margin-bottom: 30px;
    font-size: 0.875rem;
  }
  .login-content {
    order: 2;
    width: 100%;
    height: calc(100% - 300px);
  }
  .login-content__v-wave {
    display: none;
  }
  .login-content__h-wave {
    display: block;
  }
  .logo-turion {
    width: 190px;
  }
  .logo-client {
    width: 80px;
  }
  .login-phrase {
    display: none;
  }
  .login-illustrations {
    order: 1;
    width: 100%;
    height: 300px;
  }
  .form-field {
    height: 45px;
  }
  .form-field .form-field__label {
    font-size: 0.938rem;
  }
  .form-control {
    font-size: 0.938rem;
  }
  .login-vetor__map {
    display: none;
  }
  .login-vetor__arrow {
    width: 90%;
    height: 100%;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%);
  }
  .login-vetor__dollar {
    --position-y: 55%!important;
    max-width: 23px;
    right: 30%;
  }
  .login-vetor__wifi {
    --position-y: 40%!important;
    max-width: 30px;
    right: 10%;
  }
  .login-vetor__building {
    width: 100%;
    height: 100%;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
  }
}
@media (max-width: 576px) {
  .login-content {
    height: calc(100% - 140px);
  }
  .login-illustrations {
    height: 140px;
  }
  .login-box {
    padding: 0px 50px 30px;
  }
  .logo-client {
    width: 90px;
  }
  .login-form__message > br {
    display: inline;
  }
  .login-form__warning p > br {
    display: inline;
  }
}
@-webkit-keyframes windowsBlink {
  0%, 20% {
    fill: var(--fill-off);
  }
  30%, 80% {
    fill: var(--fill-on);
  }
  100% {
    fill: var(--fill-off);
  }
}
@keyframes windowsBlink {
  0%, 20% {
    fill: var(--fill-off);
  }
  30%, 80% {
    fill: var(--fill-on);
  }
  100% {
    fill: var(--fill-off);
  }
}
@-webkit-keyframes arrowDraw {
  from {
    opacity: 0;
    stroke-dashoffset: 725;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes arrowDraw {
  from {
    opacity: 0;
    stroke-dashoffset: 725;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    bottom: -10%;
  }
  20% {
    opacity: 0;
    bottom: calc(var(--position-y) / 2);
  }
  30%, 32%, 34%, 36%, 38%, 40%, 42%, 44%, 46%, 38%, 50%, 52%, 54%, 56%, 58%, 60%, 65%, 80%, 82.5%, 85% {
    opacity: 1;
    bottom: var(--position-y);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    bottom: -10%;
  }
  20% {
    opacity: 0;
    bottom: calc(var(--position-y) / 2);
  }
  30%, 32%, 34%, 36%, 38%, 40%, 42%, 44%, 46%, 38%, 50%, 52%, 54%, 56%, 58%, 60%, 65%, 80%, 82.5%, 85% {
    opacity: 1;
    bottom: var(--position-y);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeUpPhrase {
  0% {
    opacity: 0;
    top: -10px;
  }
  20% {
    opacity: 0;
    top: calc(var(--login-phrase-top) / 2);
  }
  80%, 100% {
    opacity: 1;
    top: var(--login-phrase-top);
  }
}
@keyframes fadeUpPhrase {
  0% {
    opacity: 0;
    top: -10px;
  }
  20% {
    opacity: 0;
    top: calc(var(--login-phrase-top) / 2);
  }
  80%, 100% {
    opacity: 1;
    top: var(--login-phrase-top);
  }
}

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