:root {
  --color-1: #5b616a;
  --color-2: #275dad;
  --color-3: #aba9c3;
  --color-4: #ced3dc;
  --color-5: #fcf7f8;
  --color-6: #2f3237;
}

html {
  font-family: Roboto, sans-serif;
  background-color: var(--color-6);
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#formContainer {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 10vh;
  background-color: var(--color-2);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  /* border: solid 3px var(--color-3); */
  padding-bottom: 8px;
}

button:active {
  background-color: var(--color-3);
  transform: scale(0.95);
  transition:
    background-color 0.3s ease,
    transform 0.1s ease;
}

#laborTrackerLink {
  color: var(--color-5);
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  position: fixed;
  bottom: 50px;
  background-color: #8c2e00;
  border-radius: 10px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  width: 75%;
  text-wrap: nowrap;
}

label {
  text-align: right;
  margin-right: 10px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-5);
}

input {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  max-width: 60vw;
}

button {
  font-size: 16px;
  font-weight: bold;
  background-color: var(--color-6);
  color: var(--color-5);
  justify-self: center;
  width: 40%;
  border: none;
  padding: 10px;
  border-radius: 15px;
}

#loginForm {
  display: grid;
}

#usernameInput {
  grid-row: 2;
  grid-column: 2;
}

#usernameLabel {
  grid-row: 2;
  grid-column: 1;
}

#passwordInput {
  grid-row: 3;
  grid-column: 2;
}

#passwordLabel {
  grid-row: 3;
  grid-column: 1;
}

#submitButton {
  grid-row: 4;
  grid-column: 1 / span 2;
}

#logo {
  grid-row: 1;
  grid-column: 1 / span 2;
  /* max-width: 50vw; */
  justify-self: center;
  margin-bottom: 3vh;
  background-color: var(--color-5);
  border-radius: 10px;
  padding: 20px;
  width: 75vw;
}

#signUpLink {
  margin: auto;
  margin-top: 20px;
  font-size: 2ch;
  color: var(--color-5);
}

#passwordResetLink {
  margin: auto;
  margin-top: 20px;
  font-size: 2ch;
  color: var(--color-5);
}
