.login_background {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #F3F3F3;
}

.login_panel {
  width: 320px;
  height: auto;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login_header {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 18px;
}

.login_header_logo {
  width: 100%;
  height: 30px;
  background-image: url('/assets/logo_medium.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.login_form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.login_content {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 12px;
}

.login_field_label {
  width: 100%;
  height: auto;
  margin: 0 0 6px 0;
  line-height: 14px;
  font-size: 14px;
  font-weight: bold;
  color: #666666;
}

.login_field_input {
  margin: 0 0 24px 0;
}



.login_submission {
  display: flex;
  flex-direction: row;
  justify-content: end;
}

.login_password_help {
  margin: 0 12px 0 0;
}



.login_information {
  display: none;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 12px 24px;
  background: #666666;
  color: #FFFFFF;
  margin: 24px 0 0 0;
  border-radius: 6px;
  line-height: 14px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.login_information.login_information_error {
  background-color: #a63e37;
}



.login_message_container {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 12px 24px;
  border-radius: 6px;
  margin: 0 0 24px 0;
  text-align: center;
  display: none;
  line-height: 16px;
  font-size: 14px;
}

.login_message_container.login_error_message {
  background-color: #a63e37;
  color: #FFFFFF;
  display: block;
}

.login_message_container.login_auth_required {
  background-color: #F3F3F3;
  color: black;
  display: block;
}

.login_alt_sign_in_button {
  width: auto;
  height: 36px;
  background-color: transparent;
  color: #E49A55;
  margin: 12px 0 0 0;
  padding: 0;
  cursor: pointer;
}

.login_alt_sign_in_button img {
  width: auto;
  height: 100%;
}

.login_alt_sign_in_button:hover {
  background: transparent;
}

.login_alt_sign_in_button:focus {
  background: transparent;
}