* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  min-height: 100vh;
  background-color: #b2b2b2;
  /*background-image: url(background-login.svg);*/
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
#bgnd {
  padding-top: 75px;
}
input[type="text"],
input[type="password"] {
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
  border-color: #ddd;
}
input[type="text"],
input[type="password"],
select {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  padding: 0.2rem 0.4rem;
  margin-bottom: 0.3rem;
}

#noscript {
  display: block;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

#logincontainer {
  border-radius: 3px;
  opacity: 0;
  padding: 2rem 3rem;
  margin-right: auto;
  margin-left: auto;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  min-width: 300px;
  max-width: 480px;
  width: 50vw;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

#loginbtnwrap {
  text-align: right;
}

#loginbtn {
  border: 1px solid #004c72;
  display: block;
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
  background-color: #006fb4;
  font-weight: bold;
  font-size: 1.8rem;
  color: rgb(255, 255, 255);
  text-shadow: rgba(0, 0, 0, 0.589844) 0px -1px 0px;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  border-radius: 4px;
  transition: all 0.2s;
  margin-top: 1rem;
}
#loginbtn:hover,
#loginbtn:active {
  background-color: #e31c3a;
  border: 1px solid #ad1734;
  color: #f9f9f9;
  text-shadow: none;
}

.errmsg {
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none;
}
