body {
  margin: 0px;
  padding: 0px;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  width: 100vw;
  height: 100vh;
}

.container {
  display: flex;
  padding: 10px;
  flex-direction: column;
}
.container .head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container .head img {
  height: 80px;
}
.container .head h2,
.container .head h4 {
  background: -webkit-linear-gradient(rgb(50, 120, 255), rgb(255, 99, 110));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 33px;
  margin-top: 0px;
  text-align: center;
}
.container .head h4 {
  font-size: 24px;
}
.container .center {
  width: 650px;
  margin: auto;
}
@media (max-width: 500px) {
  .container .center {
    width: 90%;
  }
}
.container .center > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 8px;
  background: -webkit-linear-gradient(20deg, rgb(50, 120, 255), rgb(255, 99, 110));
  border-radius: 10px;
}
.container .center > div div {
  background-color: #f1f1f1;
  border-radius: 10px;
  margin: 5px;
  padding: 5px;
}
.container .center > div div p {
  text-align: center;
  font-weight: 400;
  font-size: 17px;
}
.container .last {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 16px;
}
.container .last p {
  font-size: 14px;
  color: #666;
}
.container .last button {
  border-radius: 30px;
  padding: 10px 22px;
  border: 0px;
  background: rgb(50, 120, 255);
  color: #FFF;
  cursor: pointer;
}
.container .center,
.container .last {
  display: none;
}
.container .head,
.container .center,
.container .last {
  transition: 2.3;
}
.container .hidden {
  width: 650px;
  margin: auto;
}
@media (max-width: 768px) {
  .container .hidden {
    width: 350px;
  }
}
.container .hidden .new-form {
  display: flex;
  flex-direction: column;
  margin: 15px;
}
.container .hidden .new-form label {
  margin-bottom: 10px;
}
.container .hidden .new-form input {
  padding: 10px;
  border-radius: 4px;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}
.container .hidden .group-buttons {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
.container .hidden .group-buttons button {
  border-radius: 30px;
  padding: 10px 22px;
  border: 0px;
  background: rgb(50, 120, 255);
  color: #FFF;
  cursor: pointer;
  margin: 15px;
  margin-top: 0px;
}/*# sourceMappingURL=style.css.map */