*{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
body{
  background: #8cb369;
}
.header{
  width: 100vw;
  height: 70px;
  background: white;
}
.header h1{
  text-align: center;
  padding-top: 20px;
  color: #8cb369;
}
.header button {
  width: 150px;
  height: 50px;
  float: right;
  margin-top: -45px;
  margin-right: 5%;
  background: #8cb369;
  border: 0;
  border-radius: 10px;
  font-size: 19px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 5px gray;
  transition:.5s;
}
.header button:hover{
  background: #66834b;
}
.box{
  width: 500px;
  margin-left: calc(50vw - 250px);
  height: 300px;
  margin-top: calc(50vh - 220px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 20px gray;
  padding-bottom: 30px;
}
.box h3{
  margin-left: 40px;
  padding-top: 40px;
  font-size: 40px;
  color: #8cb369;
}
.box form {
  display: grid;
  margin-left: 40px;
  width: 100%;
  margin-top: 40px;
  grid-template-columns: 30% 70%;
  grid-template-rows: 50px 50px 50px 50px 50px 50px 50px;
}
.box form .insert{
  width: calc(80% - 15px);
  height: 30px;
  border-radius: 5px;
  border: 1px solid #8cb369;
  padding-left: 15px;
  font-size: 16px;
}
.box form .toggle{
  width: 95%;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #8cb369;
  padding-left: 15px;
  font-size: 16px;
  display:none;
}
.box form p {
  margin-top: 10px;
}

.box .Account{
  display: flex;
}
.box .Account p {
  font-size: 18px;
  margin-left: 5px;
}
.box .Account input {
  width: 20px;
  height: 20px;
  margin-top: 8px;
  cursor: pointer;
}
.box button{
  width: 80%;
  height: 30px;
  background: #8cb369;
  color: #fff;
  cursor: pointer;
  padding-top: 1px;
  border-radius: 5px;
  border: 1px solid #8cb369;
  padding-left: 15px;
  font-size: 16px;
  box-shadow: 0 0 5px gray;
  transition:.5s;
}
.box button:hover{
  background: #66834b;
}
