/* Minification failed. Returning unminified contents.
(44,32): run-time error CSS1046: Expect comma, found '0'
(44,36): run-time error CSS1046: Expect comma, found '/'
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
    /*background-color: #07a6e3;*/
    background: #E9EBEE;
    background-size: cover;
    display: grid;
    grid-template-areas: "header" "loginform";
    grid-template-columns: 1fr;
    grid-template-rows: 0.07fr 1fr;
    height: 100%;
}

header {
  grid-area: header;
  display: flex;
  background: #365899;
  justify-content: flex-start;
}

  header img {
    margin: 5px;
  }

#searchFrm {
    margin: 0;
    position: absolute;
    top: 30%;
    left: 50%;
    -ms-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    background: #fff;
    align-self: center;
    padding-bottom: 10%;
    border-radius: 10px;
    box-shadow: 0 0 35px rgb(0 0 0 / 10%);
    padding: 30px;
    padding-top: 2%;
    padding-bottom: 2%;
}

#searchFrm label {
    margin: 0;
    font-weight: bold;
    color: #333;
}

    #searchFrm p {
        margin-bottom: 10px;
    }

footer {
    background-color: #3b5998;
}

.main-footer {
    padding-top: 30px;
    padding-bottom: 30px;
}
