@charset "UTF-8";
/*
 * Styling for the Login-Screen
 */

body.login-view {
  background: var(--color-grey-50);
}

.login-view #contentWrapper {
  margin-top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styling of Container */
.login {
  width: 24rem;
  margin: 0 auto 0;
  margin-top: calc(8rem - 110px);
  background: var(--color-white);
  overflow: hidden;
  padding: 1em 2em;
  box-shadow: 0px 0px 24px var(--color-black-20);
  padding: 2em;
  width: calc(384px - 4em);
  text-align: center;
}

.login.login--ms-oauth {
  -webkit-box-shadow: 2px 0px 24px 0px var(--color-black-10);
  -moz-box-shadow: 2px 0px 24px 0px var(--color-black-10);
  box-shadow: 2px 0px 24px 0px var(--color-black-10);
  margin-bottom: 1rem;
}

.login > * {
  display: inline-block;
  float: none;
}

.login .logo {
  background: url('../../shared/img/logos/logo_soluzione.svg') no-repeat scroll left top transparent;
  width: 140px;
  height: 55px;
  margin-bottom: 2rem;
}

.login .divide {
  width: 2rem;
  height: 2px;
  background: var(--primary-color);
  margin: 0 8rem;
}

.login .welcome-message {
  margin: 0.8rem 0 1.6rem;
  font-size: 18px;
  font-weight: 500;
}

.login .welcome-message span {
  font-weight: normal;
  margin-top: 0.8rem;
  display: block;
}

.login .error-message {
  background: var(--color-primary-950);
  color: var(--primary-color);
  padding: 1.6rem;
  margin-bottom: 1.6rem;
}

.login .button {
  background: var(--primary-color);
  margin: 0 0 0 5px;
  width: 100%;
  height: 40px;
  margin: 0;
}

/* Styling of Title and description-text */
.login h1 {
}

.login .form {
  width: 100%;
}

.login p {
  font-size: 11px;
  margin-bottom: 1em;
}

.login .note {
  padding-top: 0.5em;
  padding-bottom: 1em;
}

/* Styling of Input-Fields */
.login .row {
}
.login .row.input {
  display: table;
  width: 100%;
  margin-top: 0.5rem;
}

.login label {
  font-size: 14px;
  line-height: 25px;
  width: 100%;
  display: inline-block;
  text-align: left;
  color: var(--color-grey-700);
  margin-bottom: 0.5em;
}

.login label .required {
  display: none;
}

.login .row input[type='text'],
.login .row input[type='password'] {
  float: right;
  width: 100%;
}

.login .rememberMe,
.login .login-buttons {
  width: 100%;
  margin-top: 1.5em;
}

.login .rememberMe {
  margin-top: 0;
}

.login .rememberMe label {
  font-weight: normal;
  font-size: 10px;
}

.login input[type='submit'] {
  background: url('../img/nav_user_button.png') no-repeat scroll left top transparent;
  height: 24px;
  width: 102px;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  filter: alpha(opacity=100);
}

.login input[type='submit']:hover {
  background: url('../img/nav_user_button.png') no-repeat scroll left bottom transparent;
  cursor: pointer;
}

.login .form .row .errorMessage {
  color: var(--color-alarm-dark);
  margin-top: 0.5rem;
  display: inline-block;
}

#ui-layout-center {
  border-top: 0px none;
}

.ui-layout-north {
  min-width: 1000px;
}

/*
 * ms oauth footer
 */
.login--ms-oauth--footer {
  bottom: 0;
  left: 0;
  position: fixed;
  height: 3.2rem;
  background: var(--color-white);
  padding: 0 1.6rem;
  width: calc(100% - 3.2rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.login--ms-oauth--footer * {
  color: var(--color-grey-400);
}

.login--ms-oauth--footer .copyright-wrapper {
  display: flex;
  align-items: center;
}

.login--ms-oauth--footer > a {
  margin-right: 1.6rem;
}

.login--ms-oauth--footer .logo {
  background: url('../../shared/img/logos/logo_soluzione.svg') no-repeat scroll left top transparent;
  width: 36px;
  height: 14px;
  margin-left: 1.6rem;
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  body.login-view {
    background: var(--color-white);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  body.login-view .siteheaderWrapper {
    display: none;
  }

  body.login-view #contentWrapper {
    margin: auto 0;
  }

  .login {
    box-shadow: none;
    padding: 0;
    max-width: 100%;
  }

  .login.login--ms-oauth {
    box-shadow: none;
  }
}
