html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}
:root{
  --color-white: aliceblue;
  --color-darkblue: darkblue;
}
body{
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-white);
}
body::before{

  content: ''; /*Properti content wajib ada untuk elemen pseudo ::before agar muncul. */
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: var(--color-darkblue); /* For browsers that do not support gradients */
  background-image: linear-gradient(115deg, rgba(58, 58, 158, 0.8), rgba(136, 136, 206, 0.7)), url(img/pexel-zetongs.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.judul{
  margin-top: 3%;
  /* background-color: wheat; */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* min-height: 5rem; */
}
.short-gratitude{
  margin: 1rem 0;

}
/* konten utama */

/* .konten-form{
  
} */
.konten-form2{
  display: flex;
  justify-content: center;
  min-height: 60rem ;
  /* width: 80%; */
}
.form-register{
  /* border:; */
  border-radius: 4px;
  padding: 40px;
  width: 60%; 
  background:rgba(42, 42, 72, 0.7) 
}

/* .layout-name{
  display: flex;
  width: 100%;
  height: 2rem;
  background-color: var(--color-white);
  border-radius: 4px;
} */

.nama,.email, .age, .role, .feature, .button-submit{
  width: 100%;
  height: 2rem;
  font-size:medium;
  /* margin-left: 12px; */
  padding-left: 12px;
  border-radius: 5px;
  /* margin-top: 12px; */
}
.improved-kontainer{
  /* background-color: wheat; */
  min-height: 30vh;
}

.recommend-kontainer{
  /* background-color: wheat; */
  height: 7rem;
  padding-top: 12px;
}
/* .label-definitely, .label-maybe, .label-notsure{
  display: inline;
}
.label-frontend, .label-backend, .label-datavisualization, .label-challenges, .label-opensource, .label-gitter, .label-video, .label-city, .label-wiki, .label-forum, .label-additionalcourse{
  display: inline;
} */

.any-kontainer{
  /* background-color: wheat; */
  height: 20vh;
}
.comment-suggestion{
width: 100%;
resize: vertical;
font-size: large;
min-height: 120px;
}

.submitted{
  background-color: aquamarine;
  color: var(--color-white);
}

.name-kontainer, .email-kontainer, .age-kontainer, .role-kontainer, .recommend-kontainer, .feature-kontainer, .improved-kontainer, .any-kontainer, .button-kontainer{
  margin: 1rem 0;
}

@media screen and (max-width:768px) {
.button-kontainer{
  margin-top: 3rem;
}
}

@media screen and (max-width:480px) {
  /* .konten-form2{
    width: ;
  } */
  .form-register{
    width: 90%;
  }
  .recommend-kontainer{
    /* background-color: wheat; */
    height: 14%;
  }
  }