.login_body{
  width: 100vw;
  height: 100vh;

  display: grid;
  grid-template-rows: calc(100vh - 50px) 50px;
  grid-template-areas: "login_content" "standard_footer";
}

.login_content{
  grid-area: login_content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
}

.login_content form{
  width: 300px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #F2F2F2;
}

.login_content label{
  width: 100%;
  height: 50px;
  display: block;
  background-color: #5B9BD5;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
}

.login_content input{
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 10px;
  width: calc(100% - 40px);
  height: 35px;
}

.login_content button{
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  width: calc(100% - 40px);
  height: 50px;
  line-height: 50px;
  background-color: #44546A;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  border: none;
}

.login_content button:hover{
  background-color: #34445A;
}
