@font-face {
  font-family: 'Franklin Gothic Book';
  font-style: normal;
  font-weight: 400;
  src: url(/hms/fonts/franklin_gothic_book.woff2) format('woff2');
}

@font-face {
  font-family: 'Franklin Gothic Medium';
  font-style: normal;
  font-weight: 400;
  src: url(/hms/fonts/franklin_gothic_medium.woff2) format('woff2');
}

html {
  background-color: #EFEFEF;
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: 'Franklin Gothic Book', sans-serif;
}

div {
  box-sizing: border-box;
  margin: 0;
}

button {
  border: none;
  cursor: pointer;
}

.container {
  width: 100%;
  height: 100%;
  padding: 2vw;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  background-image: url('/hms/img/login.svg');
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  background-origin: content-box;
}

.container a {
  display: block;
  text-align: center;
}

.container a:focus {
  outline: none;
}

.logo {
  width: 20vw;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login {
  font-family: 'Franklin Gothic Book', sans-serif;
  width: 340px;
  height: 51px;

  font-size: 24px;
  font-weight: 900;
  padding: 10px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: 0.3s;
  white-space: nowrap;

  background: white;
  border: 2px solid black;
  color: black;
}

.login:hover {
  background: #8ABEED;
}

.login:focus {
  outline: none;
}

.not_found {
  font-family: 'Franklin Gothic Medium', sans-serif;
  font-size: 24px;
  color: #444444;
  text-align: center;
  padding: 0px;
  margin: 0px;
  margin-bottom: 40px;
}

.password-form {
  width: 340px;
  margin: 0 auto;
}

.password-form > div {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.password-form label {
  font-family: 'Franklin Gothic Medium', sans-serif;
  text-transform: uppercase;
  color: white;
  font-size: 24px;
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}

.password-form input {
  width: 100%;
  height: 36px;
  border: 2px solid white;
  border-radius: 4px;
  font-size: 20px;
  color: #444444;
  padding: 4px;
  box-sizing: border-box;
  margin-bottom: 8px;
  font-family: 'Franklin Gothic Book', sans-serif;
}

.password-form .login {
  margin-top: 10px;
}

.static-input {
  width: 100%;
  height: 30px;
  border-radius: 4px;
  font-size: 24px;
  color: #444444;
  padding: 0px;
  box-sizing: border-box;
  margin-bottom: 12px;
  text-align: center;
  font-family: 'Franklin Gothic Book', sans-serif;
}
