html,
body {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  width: 100%;
}

.boxCss {
  width: 96%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.formCss {
  padding: 3%;
  border: 1px solid #dadada;
  border-radius: 10px;
  width: 50%;
  max-width: 500px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

.formCss label {
  font-weight: 600;
}

input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.gender-container {
  display: flex;
  gap: 5%;
  margin: 10px 0;
  align-items: center;
  flex-wrap: wrap;
}

.gender-option {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
}

.btn {
  display: flex;
  justify-content: center;
  margin-top: 5%;
  flex-wrap: wrap;
  overflow-x: hidden;
}

#addS {
  margin-top: 5%;
  padding: 12px;
  font-size: 18px;
  cursor: pointer;
  color: white;
  background-color: rgb(36, 156, 255);
  border: none;
  border-radius: 8px;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  font-weight: 900;
}

#add,
#check {
  width: 30%;
  min-width: 40%;
  height: 50px;
  padding: 3px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  color: white;
  background-color: rgb(36, 156, 255);
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s;
  box-sizing: border-box;
  overflow: hidden;
}

#add:hover,
#check:hover,
#addS:hover {
  background-color: rgb(3, 104, 186);
}

.btnBox {
  margin-top: 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  flex-wrap: wrap;
  overflow-x: hidden;
}

#selections {
  padding: 10px;
  border-radius: 1vw;
  margin: 10px 0;
  min-width: 80px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}