/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #fff
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #121212;
}
.container {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #1E1E1E;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.container header {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.container .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #fff;
}
.form .column {
  display: flex;
  column-gap: 15px;
}
.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
}
.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #00BF63;
  border-radius: 10px;
}
.form button:hover {
  background: #39ca84;
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}


.form .age-box {
  margin-top: 20px;
}
.age-box h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.age-option, .age) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .age {
  column-gap: 5px;
}
.age input {
  accent-color: #00BF63;
}
.form :where(.age input, .age label) {
  cursor: pointer;
}
.age label {
  color: #fff;
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.age-option, .age) {
    row-gap: 15px;
  }
}




.form .gender-box {
  margin-top: 20px;
}
.gender-box h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.gender-option, .gender) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .gender {
  column-gap: 5px;
}
.gender input {
  accent-color: #00BF63;
}
.form :where(.gender input, .gender label) {
  cursor: pointer;
}
.gender label {
  color: #fff;
}




.form .mic-box {
  margin-top: 20px;
}
.mic-box h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.mic-option, .mic) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .mic {
  column-gap: 5px;
}
.mic input {
  accent-color: #00BF63;
}
.form :where(.mic input, .mic label) {
  cursor: pointer;
}
.mic label {
  color: #fff;
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.mic-option, .mic) {
    row-gap: 15px;
  }
}





.form .staff-box {
  margin-top: 20px;
}
.staff-box h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.staff-option, .staff) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .staff {
  column-gap: 5px;
}
.staff input {
  accent-color: #00BF63;
}
.form :where(.staff input, .staff label) {
  cursor: pointer;
}
.staff label {
  color: #fff;
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.staff-option, .staff) {
    row-gap: 15px;
  }
}

.button {
  height: 55px;
  width: 100%;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  align-self: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px
}

.buttoncancel {background-color: #EB4B4B;}
.buttonhub {background-color: #00BF63;}
