@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');

*{
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body { 
    height: 100%;
    flex-direction: column;
    display: flex;
    width: 100%;
    font-family: 'Nunito', sans-serif;
  }
  h1{
    color: #fff;
    font-size: 8vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    position: relative;
    background-image: url(background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .container {
    max-width: 100vh;
    margin: 40px auto;
    height: 100vh;
    padding: 20px;
    background-color: #204018;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
p{
  color: #000000;
  font-size: 6vh;
  text-align: center;
  font-weight: bold;
}
label{
  font-size: 2vh;
  color: #fff;
}
input{
  height: 4vh;
  cursor: text;
  width: 30vh;
  border-radius: 1vh;
  padding: 1rem;
  font-size: 1.2rem;
}
.gender{
  height: 4vh;
  cursor: pointer;
  width: 30vh;
  border-radius: 1vh;
  font-size: 1.2rem;  
}
form {
  height: 20rem;
  width: 100%;
  gap: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.forms{
  width: 30vh;
  height: 20vh;
}
h2{
  color: #fff;
  font-size: 1.5rem;
  margin-top: 10px;
}

input[type="checkbox"] {
  transform: scale(0.4); 
  width: 10vh;
  border-radius: 1vh;
  cursor: pointer;
}
.box {
  display: grid;
  align-items: center;
  height: 0vh;
  margin-top: 1vh;
}
.check-box{
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
h3{
  color: #fff;
  font-size: 1.5rem;
  margin-top: 10px;
  top: 14vh;
}
.box-2{
  display: grid;
  align-items: center;
  height: 0vh;
  margin-top: 15vh;
}
.box-3{
  display: grid;
  align-items: center;
  height: 0vh;
  margin-top: 12vh;
}
textarea{
  width: 96vh;
  height: 20vh;
  padding: 1rem;
  font-size: 1.2rem;
  margin-top: 8px;
}
.save-button{
  display: flex;
  align-items: center;
  margin-top: 25vh;
}
button{
  height: 5vh;
  width: 20vh;
  border-radius: 10vh;
  cursor: pointer;
  font-size: 1rem;
}