@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&family=Noto+Serif:wght@400;700&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

body,
html {
  height: 100%;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-family: 'Noto Serif', serif;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1.2rem !important;
  display: flex;
  overflow: hidden;
  color: #18191f;
  background-color: #6e2af5 !important;
}
input::placeholder {
  color: #7a7a7a;
}
input:focus::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.login-form {
  background-color: #f5f5f5;
  color: #18191f;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  min-height: 10rem;
  margin: auto;
  max-width: 80%;
  padding: 25px;
  backdrop-filter: blur(16px);
  border-radius: 4px;
}
.login-text {
  text-align: center;
}
.login-text img {
  max-width: 150px;
}
.login-username:before,
.login-password:before {
  color: #7a7a7a;
}
.login-username,
.login-password {
  background: transparent;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #7a7a7a;
  display: block;
  margin: 10px auto;
  padding: 7px 15px;
  transition: 250ms background ease-in;
  min-width: 100%;
}
.login-username:focus,
.login-password:focus {
  background: #fff;
  color: #7a7a7a;
  transition: 250ms background ease-in;
}

.login-submit {
  margin-top: 25px;
  background: #6e2af5;
  color: #fff;
  display: block;
  padding: 6px 12px;
  width: 100%;
  transition: 250ms background ease-in;
  border: none;
  border-radius: 4px;
}
.login-submit:hover,
.login-submit:focus {
  background: #6117f4;
  transition: 250ms background ease-in;
}
.footer-text {
  color: #7a7a7a;
  font-size: 14px;
  text-align: center;
  padding-top: 15px;
  margin: 0;
}
.footer-text a {
  color: #7a7a7a;
}
@keyframes hue-rotate {
  from {
    -webkit-filter: grayscale(30%) hue-rotate(0deg);
  }
  to {
    -webkit-filter: grayscale(30%) hue-rotate(360deg);
  }
}

.wrong-password {
  max-width: 40%;
  margin: auto;
}
.center {
  position: relative;
  padding-top: 20%;
}
.login-text-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-family: 'Noto Serif', serif;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 5px 4px 0px rgba(0,0,0,0.5);
  font-size: 2.6em;
  padding-bottom: 30px;
}
.login-text-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-family: 'Noto Serif', serif;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: #fff;
  text-shadow: 5px 4px 0px rgba(0,0,0,0.5);
  font-size: 1.4em;
}
.login-text-block span {
  color: #f56200;
}