*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: "Poppins";
  src: url(Poppins/Poppins-Light.ttf);
}

body {
  background-color: rgb(39, 39, 39);
  color: white;
  font-family: "Poppins";
  display: grid;
  place-items: center;
  max-width: 1600px;
  margin-top: 50px;
  width: 100%;
  font-size: 18px;
}

label {
  display: block;
}
input {
  width: 100%;
  margin-bottom: 20px;
}
input,
button {
  outline: none;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: 1px solid;
}

button {
  font-size: inherit;
  cursor: pointer;
}
button:hover {
  opacity: 0.8;
}
button:active {
  transform: translateY(5px);
}

/* custom */

.form-group {
  padding: 20px;
  background-color: black;
  border-radius: 10px;
  width: 450px;
}
.form-group >h1{
    margin-bottom: 30px;
}
.form-list {
  background-color: rgb(37, 37, 37);
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  display: none;
}

.button-list0{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.button-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-list.active{
    display: block;
}
