.sign-in {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/login-background.jpg) transparent no-repeat;
  background-size: cover;
  color: var(--theme-app-font-color);
}
.sign-in .container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: color-mix(in srgb, var(--theme-app-secondary-background-color) 50%, transparent);
}
.sign-in .container .sections {
  width: 80%;
  min-height: 40vh;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sign-in .container .sections .advertising,
.sign-in .container .sections .login {
  width: 100%;
  height: 100%;
  position: relative;
}
.sign-in .container .sections .advertising {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0.5rem;
}
.sign-in .container .sections .advertising .logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 100;
}
.sign-in .container .sections .advertising .logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.sign-in .container .sections .advertising .description .title {
  font-weight: inherit;
  font-size: var(--theme-app-font-size-800);
}
.sign-in .container .sections .advertising .description .subtitle {
  font-size: var(--theme-app-font-size-700);
  font-weight: 300;
}
.sign-in .container .sections .login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--theme-app-background-color);
  border-radius: 0.25rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.sign-in .container .sections .login .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
.sign-in .container .sections .login .header .title {
  font-size: var(--theme-app-font-size-700);
  font-weight: 300;
  text-align: center;
}
.sign-in .container .sections .login .header .company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 100;
}
.sign-in .container .sections .login .header .company .title {
  font-weight: inherit;
  font-size: var(--theme-app-font-size-700);
}
.sign-in .container .sections .login .header .company .company-logo img {
  max-inline-size: 100%;
  block-size: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.sign-in .container .sections .login .body {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sign-in .container .sections .login .body form label {
  font-size: var(--theme-app-font-size-500);
}
.sign-in .container .sections .login .body form a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  text-align: right;
  text-decoration: none;
}
.sign-in .container .sections .login .body form button {
  width: 100%;
  padding: 1.5rem;
}
.sign-in .container .sections .login .footer .version {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--theme-app-font-size-100);
}

@media (max-width: 768px) {
  .sign-in .container .sections {
    width: 90%;
    height: 100vh;
    min-height: 100%;
    max-height: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .sign-in .container .sections .advertising .title {
    font-size: var(--theme-app-font-size-700);
  }
  .sign-in .container .sections .advertising .company .company-logo img {
    width: 50%;
  }
}