html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.loginbox {
    width: 80%;
    height: 100%;
    border-block: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-radius: 10px;
    box-shadow: 5px 5px 5px lightgrey;
    padding-top: 2em;
    margin: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
}

.loginroot {
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: absolute;
    margin: auto;
    width: 60%;
    height: auto;
    min-width: 400px;
    left: 0;
    right: 0;
    top: 10%;
}

.loginheader {
    padding-top: 2em;
    padding-bottom: 2em;
    width: 50%;
    margin: auto;
/*    left: 0;
    right: 0;
*/    /*
    height: 100px;
    */
}

.login-footer-image {
    width: 100px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

.loginfooter {
    text-align: center;
    justify-content: center;
}

.logininputbox {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    flex-direction: column;
    width: 100%;
    border-radius: 5px;
    border: none;
    height: 5em;
}

.inputlabel {
    position: relative;
    transform: translateY(30%);
    width: auto;
    padding-left: 5px;
    font-size: 1em;
    line-height: 50px;
    background-color: transparent;
    color: grey;
    z-index: 1;
}

.loginitem {
    width: 100%;
}

.login-form-item {
    margin: 2em;
}

.login-submit {
    text-align: center;
    width: 90%;
}

.loginmessage {
    color: red;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
}