body {
  padding: 0;
  margin: 0;
  background-color: #EEE;
}

input {
  width: 400px;
  height: 5vh;
  max-height: 75px;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

button {
  margin-top: 1vh;
  width: 350px;
  height: 5vh;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

li {
  font-size: clamp(1rem, 2.0vw, 1.5rem);
}

.Section-header {
  background-color: #8593af;
  min-height: 10vh;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282c34;
}

.Login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}
  
.Passed-check {
color: green;
}

.Failed-check {
color: red;
}