body {
  margin: 0;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

header {
  background-color: #2c345d;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5%;
}

.container {
    flex: 1;
    background-image:url(/images/login/login.jpg);
    overflow:hidden;
    background-color:rgba(255,255,255,0.5);
    background-blend-mode:lighten;
}

.login{
  width: 396px;
  margin: auto;
  text-align: center;
  margin-top: 10%;
}

.login__form {
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    box-shadow: -1px 1px 7px -2px rgb(0 0 0 / 40%), 0 5px 5px -5px rgb(0 0 0 / 50%);
    padding: 20px 0px;
}

input {
  font-size:1.1em;
  width: 80%;
}

.button {
  border-radius : 5px;
  background    : #1a73e8;
  color         : #ffffff;
  border: none;
}

.form-group {
  margin: 8px;
}

footer {
  height: 70px;
  background-color: #2b2a2a;
  color: #fff;
}
