@import "./colors.css";
.alert {
  color: var(--color-yellow-10);
  background-color: var(--color-yellow-20);
  width: 100%;
  margin-bottom: 2px;
}
.box-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 400px;
  max-width: 500px;
}
.box {
  align-items: center;
  background-color: var(--color-grey-20);
  box-shadow: 0 0 15px 10px var(--color-grey-10);
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.btn-primary {
  background-color: var(--color-red-20);
  border-color: var(--color-red-20);
}
.btn-primary:hover, .btn-primary[disabled]:hover .btn-primary:active, .btn-primary:focus {
  background-color: #661414;
  border-color: #661414;
}
.btn-primary:disabled {
  background-color: #BA0D0D;
  border-color: #BA0D0D;
}
.btn-link:hover {
  text-decoration: none;
  color: #BA0D0D;
}
.btn-login {
  width: 100%;
  border: none;
  background: var(--color-red-30);
  color: var(--color-white);
  font-weight: 500;
  height: 28px;
  margin-bottom: 8px;
}
.credentials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px;
}
.credentials-input {
  margin-top: 10px;
  width: 100%;
}
.footer {
  margin-top: 14px;
  font-size: 10px;
}
.login-message-checkbox {
  align-items: center;
  display: flex;
}
.login-message-text {
  max-height: 78px;
  overflow-y: auto;
  margin-top: 8px;
}
.mfa-setup {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top:12px;
}
.splash {
  position: absolute;
  height: 100%;
  width: 100%;
  background: url('../img/outside/worldmap.svg') top center no-repeat;
  background-size: cover;
}
.ia-text-legal {
  text-align: center;
}
.ia-text-red {
  color: var(--color-red-10);
}
input, select {
  background-color: var(--color-white);
  border: 1px solid #abadb3;
  outline: medium none;
  margin-bottom: 4px;
  border-radius: 0;
  width: 100%;
  height: 28px;
  padding: 4px 6px;
}
#login-form {
  width: 100%;
}
#loginMessageCheckbox {
  margin: 0 5px 0 0;
  width: 16px;
  height: 16px;
}