body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: rgb(218, 237, 255);
}

.flexcontainer {
  display: flex;
  height: 80vh;
  min-height: 500px;
  aspect-ratio: 1.78;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.infoItem {
  background-image: url("../images/blue_waves.svg");
  background-repeat: no-repeat;
  width: 50%;
  color: whitesmoke;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-content: center;
}

.loginItem {
  width: 50%;
  color: #5353ff;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-content: center;
}

.brandname {
  font-size: x-large;
  margin-left: 2rem;
  margin-top: 2.5rem;
  z-index: 1000;
  position: absolute;
  color: whitesmoke;
}

.heroPre {
  margin-bottom: 0.5rem;
}

.heroMain {
  font-size: xxx-large;
}

.heroPost {
  margin: 0.5rem 4rem;
}

.divider {
  border: 3px solid whitesmoke;
  border-radius: 3px;
  width: 20px;
  margin-left: auto;
  margin-right: auto;
}

.loginHeader {
  font-size: xx-large;
}

.loginNotes {
  color: gainsboro;
  margin: 0.5rem 6rem;
}

input {
  display: block;
  margin: 1rem auto;
  background-color: rgb(241, 241, 241);
  border: none;
  border-left: 3px solid #5353ff;
  height: 2.5rem;
  width: 40%;
  min-width: 200px;
  padding-left: 1rem;
  color: rgb(116, 116, 116);
  box-sizing: border-box;
  font-size: 1rem;
}

input::placeholder {
  opacity: 0.5;
  color: rgb(180, 180, 180);
  font-weight: bolder;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

input:focus {
  border: 3px solid #5353ff;
}

@media screen and (max-width: 1300px) {
  .flexcontainer {
    max-width: 100%;
    min-height: 500px;
    aspect-ratio: 0.89;
  }

  .infoItem {
    display: none;
  }

  .loginItem {
    min-height: 250px;
    background-image: url("../images/blue_waves.svg");
    background-size: cover;
    width: 100%;
    color: #5353ff;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-content: center;
    color: whitesmoke;
  }
}

@media screen and (max-height: 500px) {
  body {
    align-items: baseline;
  }
}

