body {
  background-color: #282B25;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-family: 'Avenir-Book', sans-serif;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 400px;
  text-align: left;
  color: white;
  display: flex;
  flex-direction: column;
}

.logo {
  width: 150px;
  height: auto;
  display: flex;
}

a.icon.la-icon {
  display: flex;
  justify-content: center;
}

.login-text {
  display: flex;
  flex-direction: column;
}

h1 {
  font-family: 'Avenir-Black', sans-serif;
  font-size: 2rem;
  margin-bottom: 0rem;
}

p {
  font-family: 'Avenir-Book', sans-serif;
  font-size: 1rem;
  margin-bottom: 0rem;
  color: #D3D3D3;
}

form {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
  max-height: 100px;
}

input[type="password"] {
  flex: 1;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  font-family: 'Avenir-Book', sans-serif;
  height: 20px
}

button {
  background-color: #EFEFEF;
  color: black;
  padding: 0.75rem 1.5rem .75rem 1.5rem;
  border: none;
  border-radius: 0;
  font-family: 'Avenir-Heavy', sans-serif;
  font-size: 0.5875rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-error p{
  color: #F36868;
}



a.icon.la-icon svg {
  width: 58px;
}

/* Responsive adjustments */
@media (min-width: 48rem) {
  input[type="password"] {
    height: 30px
  }
  
  button {
    height: 30px;
    font-size: 0.7875rem;
  }

}
/* Responsive adjustments */
@media (min-width: 64rem) {
  
  .container {
    max-width: 500px;
  }
  h1 {
    font-size: 2.5rem;
  }

  p {
    padding-top: .8rem;
  }

  .login-text {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

  input[type="password"] {
    padding: 1rem;
    font-size: 1.1rem;
    height: 35.33px;
  }

  button {
    padding: 1rem 2rem;
    font-size: 1rem;
    height: 35.33px;
  }
}

  /* Responsive adjustments */
  @media (min-width: 80rem) {
    .container {
      max-width: 600px;
    }
  } 