html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

.loginContainer {
  width: 100%;
  height: 100%;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  grid-template-columns: calc(100% - 350px) 350px;
  grid-template-areas: "loginImage emptyArea";
}
.loginContainer .loginImage {
  width: 100%;
  height: 100%;
  grid-area: loginImage;
  background-image: url("/image/login.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.loginContainer .emptyArea {
  width: 100%;
  height: 100%;
  grid-area: emptyArea;
  background-color: #333f50;
}

.loginArea {
  width: 400px;
  height: 500px;
  position: absolute;
  background-color: #bdb4ad;
  top: 25%;
  right: 150px;
  -webkit-box-shadow: 8px 5px 5px black;
          box-shadow: 8px 5px 5px black;
}
.loginArea p {
  width: 100%;
  height: 3rem;
  margin-top: 0;
  text-align: center;
}
.loginArea .login {
  width: calc(100% - 40px);
  height: calc(100% - 120px);
  padding: 100px 20px 20px 20px;
  display: none;
}
.loginArea .login.active {
  display: block;
}
.loginArea .login input {
  width: 100%;
  height: 2.5rem;
  margin-top: 10px;
  background-color: #bdb4ad;
  color: #ffffff;
  border: none;
  border-bottom: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
}
.loginArea .login input:hover {
  border-bottom: 3px solid #ffffff;
}
.loginArea .login input:focus {
  outline: none;
  border-bottom: 3px solid #ffffff;
}
.loginArea .login button {
  width: 100%;
  height: 2.5rem;
  margin-top: 20px;
  border: none;
  border-radius: 15px;
  background-color: #333f50;
  color: #ffffff;
  font-size: 16px;
}
.loginArea .login button:hover {
  cursor: pointer;
  text-decoration: underline;
  background-color: #262f3b;
}
.loginArea .login .infoFind {
  width: 100%;
  margin-top: 180px;
  text-align: center;
  font-size: 12px;
}
.loginArea .login .infoFind a:hover {
  cursor: pointer;
  text-decoration: underline;
}
.loginArea #pwFindDiv .infoFind {
  margin-top: 130px !important;
}