body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: row;
  height: 100vh;
  width: 100%;
    font-family: "Michroma", sans-serif;

  font-size: 12px;
  background: #222;
  color: #eee;
}

.totalbox {
  width: 40%;
  height: auto;
  background: #111;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  border-radius: 20px;
}
.totalbox h2 {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.totalbox .loginForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.totalbox .loginForm input {
  border-radius: 6px;
  border: none;
  outline: none;
  margin-top: 15px;
  padding: 10px;
  outline: 0;
  background: #fff;
}
.totalbox .loginForm .boxcheckbox button {
  margin-top: 15px;
}
.totalbox .loginForm .boxcheckbox .loginbtn {
  background: #6a994e;
  outline: none;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.totalbox .loginForm .boxcheckbox .loginbtn:hover,
.totalbox .loginForm .boxcheckbox .loginbtn:focus {
  background: #a7c957;
}
