.login-page{
  height: 100%;
  width: 100%;
  display: grid;
  place-items:center;
}

.login-block{
  display: grid;
  place-items: center;
}

.login-form{
  background: #eee;
  border-radius: 4px;
  padding: 1rem;
  max-width: calc(100% - 2rem);
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.25);
  
  @media( width >= 700px){
    max-width: 400px;
  }
}

.login-logo{
  max-height: 75px;
  max-width: 350px;
  padding-bottom: 1rem;
}

.contact-login-section{
  display: grid;
  place-items: center;
}