.login {
  display: flex;
  height: 100vh;
  margin: 0 20px;
  justify-content: center;
  align-items: center;
}
.login .window {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
}
.login .window .header {
  display: flex;
  flex-direction: row;
  margin-left: 14px;
  gap: 10px;
}
.login .window .header div:first-child {
  width: 60px;
  flex-shrink: 0;
  background-image: var(--img-logo);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}
.login .window .header div:last-child {
  flex-direction: column;
}
.login .window .header div:last-child .heading-4 {
  color: var(--red-light-6);
}
.login .window .form {
  background-color: var(--light-0-dark-2);
  margin: 30px 0 20px;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.06);
}
.login .window .form input {
  width: 100%;
  margin: 24px 0;
}
.login .window .form button {
  width: 100%;
}
.login .window .forgotten-password {
  display: flex;
  justify-content: end;
  margin-right: 34px;
}
.login .message-bar {
  margin-bottom: 0;
  margin-top: 20px;
}
