/* -----------------------------------------------------------
CONTENTS:
=Main Branding Colours
------------------------------------------------------------*/
/* -----------------------------------------------------------
=Main Branding Colours
Colours for main screen elements
------------------------------------------------------------*/
/* -----------------------------------------------------------
Colours for main interaction elements
------------------------------------------------------------*/
/* -----------------------------------------------------------
Status Colours
------------------------------------------------------------*/
/* -----------------------------------------------------------
Size Variables
------------------------------------------------------------*/
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  align-items: center;
}
.loginPageHidden {
  display: none;
}
.login__wrapper,
.login-redirect__wrapper {
  justify-content: center;
  display: flex;
  flex-grow: 1;
  align-items: center;
  flex-direction: column;
}
.highlighted-section-dark {
  background-color: #c2c4c6;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 1rem;
  border-bottom: 2px solid #ed1c24;
  background-color: #f2f2f2;
  width: 100%;
  height: 56px;
}
.header img {
  height: 45px;
}
.header__left {
  display: flex;
  width: 200px;
}
.header__right {
  display: flex;
  justify-content: flex-end;
  width: 200px;
}
.login__container {
  box-shadow: 0 0 1rem 0.5rem rgba(87, 87, 87, 0.7);
  background-color: rgba(242, 242, 242, 0.9);
  padding: 2rem 2rem 0 2rem;
  justify-content: center;
  min-width: 400px;
}
.login-redirect__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  padding: 2rem;
  box-shadow: 0 0 1rem 0.5rem rgba(87, 87, 87, 0.7);
  background-color: rgba(242, 242, 242, 0.9);
  min-height: 300px;
  min-width: 400px;
}
.login-redirect__container-status {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
}
.login__validation-errors,
.login-embedded__error {
  display: flex;
  justify-content: center;
  margin: 0;
  background-color: #ffffff;
}
.login__validation-errors ul,
.login-embedded__error ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.login__external-providers-separator,
.login-embedded__external-providers-separator {
  position: relative;
  text-align: center;
  font-size: 1em;
  color: #77787b;
  font-weight: bold;
}
.login__external-providers-separator:before,
.login__external-providers-separator:after,
.login-embedded__external-providers-separator:before,
.login-embedded__external-providers-separator:after {
  position: absolute;
  top: 0.75rem;
  display: block;
  content: '';
  width: 40%;
  height: 1px;
  background: #77787b;
}
.login__external-providers-separator:after,
.login-embedded__external-providers-separator:after {
  right: 0;
}
.login__external-providers-button,
.login-embedded__external-providers-button,
.login-embedded__login-field,
.change-password-embedded__field {
  width: 100%;
}
.smartsuite-logo {
  width: 202px;
  height: 50px;
}
.web-client-header__system-name {
  font-size: 2rem;
  color: #000000;
}
.footer {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.footer__generated-style {
  color: #ffffff;
}
.footer__license-info {
  font-weight: bold;
  color: #000000;
  background-color: #ffb600;
}
.user-code-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin: 1rem auto;
}
.user-code-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin: 1rem auto;
}
@media screen and (max-width: 992px) {
  .header__right {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .web-client-header__system-name {
    display: none;
  }
  .header__left {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  .header__right {
    width: 100%;
  }
  .login__wrapper,
  .login-redirect__wrapper {
    width: 85%;
  }
  .login__container {
    display: flex;
    min-width: 300px;
  }
  .login-redirect__container {
    min-width: 300px;
  }
  .footer {
    width: 85%;
  }
}

