@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap");

body {
  background-color: #1f1f1f;
  margin: 0;
  padding: 0;
}

.container {
  width: 100vw;
  max-width: 1000px;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

input[type="submit"] {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.9em;
  border-radius: 4px;
  padding: 5px 15px;
  background-color: #b0aeae;
}

input[type="submit"]:hover {
  color: #3498db;
  transition: 0.5s;
}

.alert-box {
  width: 100%;
  text-align: center;
  padding-top: 5px;
}

.alert-success {
  width: 90%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  color: #3498db;
}

.alert-warning {
  width: 90%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  color: #e1401d;
}

/* unvisited link */
a:link {
  color: grey;
  padding: 8px 0px;
}

/* visited link */
a:visited {
  color: grey;
}

/* mouse over link */
a:hover {
  color: #3498db;
}

/* selected link */
a:active {
  color: blue;
}

.bhd-emblem {
  height: 30%;
  width: 90%;
  margin-bottom: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bhd-emblem img {
  height: 90%;
}

.login {
  width: 80%;
  background: #303030;
  border: 2px solid grey;
  border-radius: 10px;
}

.login form {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.invalid-feedback {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login label {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.863);
}

.form-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.form-box label {
  margin: 0 4%;
}

.input-box {
  flex: 1;
  background-color: darkgrey;
  margin: 1% 4%;
  padding: 5px 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.9em;
  border: 1px solid lightgrey;
  border-radius: 3px;
}

.button-box {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.submit-btn {
  margin-left: auto;
  margin-right: 4%;
  margin-bottom: 2%;
}

.form-check-input {
  margin-left: 4%;
}

.form-check-label,
.submit-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  cursor: pointer;
}

.forgot-password {
  width: 80%;
  margin-top: auto;
  margin-bottom: 2%;
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  color: darkgrey;
}

#reset {
  display: none;
  border: none;
}

#login-tag {
  display: none;
}

/* This is the default above */
/* Extra small devices (phones, 576px and down) */
/* @media (max-width: 576px) {
} */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }

  .bhd-emblem {
    height: 40%;
    margin-bottom: 5%;
  }

  .login {
    width: 60%;
  }

  .forgot-password {
    width: 60%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }

  .bhd-emblem {
    height: 45%;
    margin-bottom: 5%;
  }

  .login {
    width: 50%;
  }

  .forgot-password {
    width: 50%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }

  .bhd-emblem {
    height: 45%;
    margin-bottom: 5%;
  }

  .login {
    width: 40%;
  }

  .forgot-password {
    width: 40%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .bhd-emblem {
    height: 45%;
    margin-bottom: 5%;
  }

  .login {
    width: 35%;
  }

  .forgot-password {
    width: 35%;
  }
}

/* Extra extra large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .bhd-emblem {
    height: 45%;
    margin-bottom: 5%;
  }

  .login {
    width: 40%;
  }

  .forgot-password {
    width: 40%;
  }
}
