main {
  width: 100%;
  height: 100vh;
  padding: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  margin: 1em auto;

  display: flex;
  flex-direction: column;

  background-color: var(--bg-secondary);

  gap: 1em;

  padding: 1.5em;
  border-radius: 20px;
}

.login-container h1 {
  text-align: center;

  font-family: var(--font-header);
  font-size: 35px;
  font-weight: 700;
}

.login-container .input-field {
  width: 100% !important;
}

#login-error-message {
  height: 2em;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;

  color: var(--error);
  text-align: center;
}

#login-progress-icon,
#change-password-progress-icon {
  display: none;
  animation: spin .5s linear infinite;
  font-size: 2rem;
  color: var(--text-primary);

  justify-content: center;
  align-items: center;
}