* {
  box-sizing: border-box;
}
html,body {
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-size: 10px;
  color: #707070;
  width: 100%;
  height: 100%;
  margin: 0;
}
.container {
  width: 100%;
  height: 100%;
  background-image: url(img/Everhart--New.jpg);
  background-size: cover;
  background-position: 200px center;
  position: relative;
  z-index: 1;
}
/*.container:after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  z-index: 2;*/
/*  background-color: #682A8D;*/
/*  opacity: 0.7;*/
/*}*/
#login-card {
  max-width: 500px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 75px 50px 50px;
  position: relative;
  z-index: 5;
}
#logo img {
  width: 100%;
}
#login {
  width: 100%;
}
#login p {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: center;
}
#login .button {
  background-color: #682A8D;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 300;
  padding: 15px;
  text-align: center;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 150ms ease-in-out;
}
#login .button:hover {
  background-color: #561e77;
}
#login .button:not(:last-child) {
  background-color: #A683C6;
}
#login .button:not(:last-child):hover {
  background-color: #8d69af;
}
.copyright p {
  font-size: 1.6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  #login-card {
    padding: 30px 15px 15px;
  }
}
