#app {
  background: var(--excel-green-medium);
  color: #ffffff;

  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

#blurb-wrapper {
  padding: 1rem;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  background: white;
  color: var(--excel-green-medium);
}

#title-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;

  #title {
    margin-bottom: 4rem;
    line-height: 1;
  }

  .site-icon-wrapper {
    font-size: 6rem;
  }

  filter: drop-shadow(1px 2px 8px var(--shadow-color));
  --shadow-color: hsl(149, 88%, 26%);
  box-shadow: 0 1px 1px hsl(149, 88%, 26% / 0.075);
}

#login-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 32px;

  filter: drop-shadow(1px 2px 8px var(--shadow-color));
  --shadow-color: hsl(149, 88%, 26%);
  box-shadow: 0 1px 1px hsl(149, 88%, 26% / 0.075);
}

.login-wrapper-inner {
  /* border: solid 1px pink; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: space-around;
  margin-bottom: 32px;
  gap: 16px;
}

#login-form {
  border: 4px solid white;
}

.login-labels {
  align-items: flex-end;
}

h1 {
  margin-bottom: 16px;
}

/* #email,
label {
  margin-bottom: 16px;
} */

button {
  font-size: 1.2rem;
  height: 40px;
  width: 160px;

  font-weight: 600;

  border: none;
  background: var(--excel-green-medium);
  border-radius: 10px;
  color: white;

  filter: drop-shadow(1px 2px 8px var(--shadow-color));
  --shadow-color: hsl(149, 88%, 26%);
  box-shadow: 1px 1px 1px hsl(149, 88%, 26% / 0.075);
}

button:hover {
  background: var(--excel-green-light);
  transition: 0.7s;
  /* font-size: 1.7rem; */
  /* height: 60px; */
  /* width: 210px; */
  cursor: pointer;
}

input:focus {
  outline-color: transparent;
  outline-style: solid;
  box-shadow: 0 0 0 2px var(--excel-green-color);
  transition: 0.7s;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

h3 {
  margin-bottom: 32px;
}

input {
  font-size: 1.2rem;
}

.error-message {
  color: red;
}
