:root {
  --top-line-color: #6d00a3;
  --font-header-color: #464646;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-image: url("/img/ngbackgroundlarg.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: overlay;
}

.top-line {
  width: 100%;
  height: 5px;
  position: fixed;
  top: 0;
  background-color: var(--top-line-color);
}

.sign-in-container {
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.sign-in-form-container {
  background-color: white;
  width: 30em;
  height: 20em;
  margin-bottom: 160px;
  box-shadow: 5px 5px 15px 5px #d4d4d4c0;
  transition: transform 400ms ease-in-out;
}

.sign-in-form-container.start {
  transform: translate(0, -80px);
}

.sign-in-top {
  height: 25%;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.sign-in-bottom {
  height: 65%;
  padding: 2em;
}

.sign-in-top-logo {
  background-image: url("/img/NGDesk.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 9em;
  height: 9em;
  margin: 2em;
}

.sign-in-link {
  background-image: url("/img/GRAY.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 8em;
  height: 4em;
  margin-left: 10px;
  position: fixed;
  bottom: 0;
}

.sign-in-header {
  font-weight: bold;
  color: var(--font-header-color);
}

label {
  display: none;
}

.sing-in-username-container {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 1.8em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.sing-in-username-container i {
  padding: 5px;
}

.sing-in-username-container input {
  outline: none;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 90%;
  padding-left: 5px;
}

.sing-in-password-container {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 1.8em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.sing-in-password-container i {
  padding: 5px;
}

.sing-in-password-container input {
  outline: none;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 90%;
  padding-left: 5px;
}

.sign-in-button-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.sign-in-button-container button[disabled] {
  width: 7em;
  height: 2em;
  background-color: white;
  color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  cursor: initial;
}

.sign-in-forgot-password {
  cursor: pointer;
  font-size: small;
  text-decoration: dotted;
  text-decoration-line: underline;
}

.sign-in-button-container button {
  width: 7em;
  height: 2em;
  background-color: var(--top-line-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  color: white;
  cursor: pointer;
}

.login-err {
  color: red;
  margin: 0;
  padding: 0;
  font-size: smaller;
}
