@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
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 {
  box-sizing: border-box;
  font-size: 0.85rem;
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 0.65rem;
  }
}

body {
  font-weight: normal;
  line-height: 1.6;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
}

strong {
  font-weight: bold;
}

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  background: #0C1217;
}

::-webkit-scrollbar-thumb {
  background-color: #68a3a0;
}

.generalTitle {
  font-size: 5rem;
  display: flex;
  line-height: 1;
  position: relative;
  padding: 1rem 0;
}
.generalTitle--h1 {
  font-size: 4rem;
}
.generalTitle--h2 {
  font-size: 3rem;
}
.generalTitle--h3 {
  font-size: 2rem;
}
.generalTitle--h4 {
  font-size: 1.5rem;
}
.generalTitle--h5 {
  font-size: 1.25rem;
}
.generalTitle--body {
  font-size: 1rem;
}

input[type=text],
input[type=email],
input[type=number],
input[type=password] {
  outline: none;
  border: none;
  border-radius: 5px;
  border: 0;
  padding: 1rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
  line-height: 1.5rem;
}

select {
  padding: 0.5rem 0.75rem;
  border-radius: 0;
}

textarea {
  box-sizing: border-box;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 0;
  border: 0;
  min-height: 7.5rem;
  padding: 1rem;
  transition: border-color 0.2s;
  resize: none;
}

@media only screen and (max-width: 37.5em) {
  input {
    min-height: 42px;
  }
}
.formGroup {
  position: relative;
  margin-bottom: 1.2rem;
}
.formGroup__label {
  transition: 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  font-size: 1rem;
  cursor: text;
  width: 100%;
}
.formGroup input:focus::placeholder {
  color: transparent;
}
.formGroup > *:nth-child(1)::placeholder {
  color: transparent;
}
.formGroup > *:nth-child(1):not(:placeholder-shown) ~ .formGroup__label {
  top: -0.14rem;
  font-size: 0.75rem;
  transform: translateY(0);
}
@media only screen and (max-width: 37.5em) {
  .formGroup .formGroup {
    margin-bottom: 2rem;
  }
  .formGroup .formGroup__label {
    font-size: 1.5rem;
  }
}

.button {
  cursor: pointer;
  background: #000000;
  color: #FFFFFF;
  padding: 0.45rem;
  font-weight: bold;
  border-radius: 0.2rem;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.5s ease;
  text-decoration: none;
  font-size: 0.7rem;
  line-height: 1.2;
  white-space: nowrap;
  box-sizing: border-box;
  margin: 0;
}
.button i {
  font-size: 1.5rem;
}
.button:disabled {
  cursor: not-allowed;
}
.button:hover {
  background: #7badba;
  color: #000000;
  text-decoration: none;
}
.button:focus {
  color: #000000;
  background: #7badba;
  text-decoration: none;
  outline: none;
  outline-offset: 0;
}
.button:active {
  transition: all 0.1s ease;
  box-shadow: inset 0 0 1rem #000000;
}
.button--action {
  padding: 0.75rem 2.5rem;
  letter-spacing: 0;
  font-size: 1.25rem;
  font-weight: normal;
}
.button--invert-sup .button__sup {
  order: 1;
  margin-left: 0;
}
.button--invert-sup .button__main {
  order: 2;
  margin-left: 0.5rem;
}
.button--outlined {
  background: transparent;
  border: 1px solid #134779;
}
.button--outlined:hover {
  background: rgba(19, 71, 121, 0.1);
}
.button--outlined:active {
  box-shadow: none;
}
.button--link {
  background: transparent;
  color: #FFFFFF;
  text-decoration: underline;
  padding-left: 0;
  padding-right: 0;
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: normal;
}
.button--icon {
  background: transparent;
  text-decoration: underline;
}
.button--icon:hover, .button--icon:focus, .button--link:focus, .button--link:hover {
  transition: all 0.1s ease;
  box-shadow: none;
  background: transparent;
}
.button--link:hover, .button--link:focus {
  color: #f5deb3;
}
.button__suffix svg {
  margin-left: 1rem;
  width: 1.25rem;
}

.button-group {
  display: flex;
  align-items: center;
}
.button-group > .button:not(:last-child) {
  margin-right: 1.5rem;
}
.button-group--dense > .button:not(:last-child) {
  margin-right: initial;
}
.button-group--expandedButtons > .button {
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .button-group--expandedButtons {
    flex-direction: column;
  }
  .button-group--expandedButtons > .button {
    box-sizing: border-box;
    width: 100%;
    margin: 0 !important;
    margin-bottom: 0.5rem !important;
  }
}

.main {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  overflow-y: scroll;
}

.default-login {
  background-color: #FFFFFF;
  background-image: url(../../images/loginBackgroundDefault.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.login {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  color: #FFFFFF;
}
.login .loginBtn {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
}
.login__language {
  padding: 1rem;
}
.login__language .button {
  background: transparent;
  padding: 0;
  border: none;
  margin: 0 1rem;
  cursor: pointer;
}
.login__language .image {
  width: 100%;
  height: 100%;
  min-height: 1.25rem;
}
@media only screen and (max-width: 56.25em) {
  .login__language .button {
    margin: 1rem;
  }
  .login__language .image {
    min-height: 1.9rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .login__language {
    font-size: 1.5rem;
  }
  .login__language .button {
    margin: 2rem;
  }
}
.login .logo img {
  width: 100%;
}
.login__title {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.login form,
.login form input[type=text],
.login form input[type=password] {
  width: 100%;
}
.login form input[type=text],
.login form input[type=password] {
  width: 100%;
  opacity: 0.92;
}
.login__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 460px;
  margin-top: 8rem;
}
.login__form .button {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
.login__form .formGroup__label {
  color: #000000;
}
.login__reset {
  margin-top: 0;
  width: 100%;
  color: #000000;
}
@media only screen and (max-width: 56.25em) {
  .login input {
    font-size: 1.4rem;
  }
  .login .formGroup {
    margin-bottom: 1.7rem;
  }
}
.login .requestPassword {
  display: flex;
  flex-direction: column;
}
.login #restore p {
  font-size: 1.2rem;
}
.login .resetWithUserName {
  padding-bottom: 10px;
}
.login .restorePassword {
  align-self: center;
}
.login #successMessage,
.login #failureMessage,
.login #expiredCodeMessage {
  display: none;
}
.login .resetWithUserName label.error {
  color: #ffdab9;
  padding-left: 2px;
}

/*# sourceMappingURL=login.css.map */
