.info-logo {
  width: 70%;
  height: 20%;
  position: absolute;
  top: 9%;
  left: 15%;
  background-image: url("../images/BB-logo.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.info-title {
  font-family: "Work Sans";
  font-size: 4vw;
  color: white;
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translateY(-50%);
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
}

.login-container {
  width: 350px;
  min-width: 25%;
  height: 60%;
  background-color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  border-radius: 20px;
}

.login-title {
  font-family: "Lato";
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 64%;
  color: black;
}

.username-input-container {
  width: 100%;
  height: 10%;
  position: absolute;
  top: 40%;
}

.username-input, .password-input {
  margin-left: 15%;
  width: 70%;
  height: 70%;
  font-size: 18px;
  border: 0;
  border-bottom: 1px solid rgb(212, 212, 212);
  font-family: "Lato";
  padding: 1%;
  text-align: center;
  color: rgb(101, 101, 101);
}

.username-input:focus, .password-input:focus {
  outline:none!important;
}

.username-input-label, .password-input-label {
  font-family: "Lato";
  text-align: center;
  text-transform: uppercase;
  color: rgb(210, 210, 210);
  font-weight: bold;
  font-size: 14px;
}

.password-input-container {
  width: 100%;
  height: 10%;
  position: absolute;
  top: 59%;
}

.login-button {
  width: 40%;
  font-family: "Lato";
  font-size: 18px;
  position: absolute;
  top: 78%;
  left: 30%;
  text-align: center;
  text-transform: uppercase;
  background-color: #4b6cb7;
  color: white;
  border: none;
  outline: none;
  border-radius: 20px;
}

.login-button:hover {
  cursor: pointer;
  background-color: #3b5795;
}

.login-button:active {
  cursor: pointer;
  background-color: #273c6a;
}

.login-error-container {
  position: absolute;
  top: 0%;
  left: 25%;
  width: 50%;
  font-family: "Lato";
  background-color: rgb(158, 1, 1);
  color: white;
  text-align: center;
  padding: 0.5vw 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8vw;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.5);
}
