:root {
  font-family: "Cardinal, Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;

  color-scheme: light dark;
  background-color: #ebf5df;
  color: var(--scheme-dark);

  --scheme-dark: #3d405b;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
}

.main {
  padding: 2rem;
}

nav {
  border-bottom: 1px solid;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;
}

form input {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--scheme-dark);
}

.header-link {
  text-transform: uppercase;
  margin-left: 30px;
}

.profile-icon {
  font-size: 2rem;
}

.back-icon {
  font-size: 1.6rem;
}

.header-left-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

/* .header-link + .header-link {
  margin-left: 30px;
} */

.login-content {
  min-width: 250px;
  border: 2px solid;
  border-radius: 5px;
  padding: 2rem;
}

.login-main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50vh;
}

.error-msg {
  color: red;
}

.hidden {
  display: none;
}
