:root {
  --main-bg-color: #04364a;
  --sec-color: #176b87;
  --third: #64ccc5;
  --fourth: #dafffb;
}

html {
  background: radial-gradient(
    164.75% 100% at 100% 0,
    #334155 0,
    #0f172a 48.73%
  );
}
body {
  margin: 0;
  padding: 0;
  color: #cbcbcb;
  font-family: sans-serif;
}
.label-wrap {
  display: flex;
  justify-content: center;
}

label {
  font-weight: 800;
}

.inputs-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/* Styles for the form */
#bodyFatForm {
  width: 250px;
}
.formwrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  background: radial-gradient(
    164.75% 100% at 100% 0,
    #334155 0,
    #0f172a 48.73%
  );
  padding-bottom: 2000px;
}

.radio-wrap {
  display: flex;
  justify-content: space-around;
}

.btn-wrap {
  display: flex;
  justify-content: center;
}

.btn {
  width: 16.5rem;
  border: 3px solid var(--third);
  border-style: ridge;
  background-color: #0f172a;
  color: #cbcbcb;
  font-size: 1rem;
  font-weight: 900;
  padding-top: 5px;
  border-radius: 10px;
  padding-bottom: 5px;
  margin-top: 10px;
  cursor: pointer;
  /* box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
      rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
      rgba(0, 0, 0, 0.09) 0px 32px 16px; */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

form {
  margin: 20px;
  padding-top: 20px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border: 4px solid var(--sec-color);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

input:checked {
  accent-color: var(--third);
}

input,
#height:focus {
  border: 2px solid var(--third);
}

input[type="number"],
input[type="radio"],
button {
  margin-top: 1px;
  margin-bottom: 20px;
  display: block;
}

.wrap1 {
  display: flex;
}
.gender {
  color: #cbcbcb;
  font-weight: 900;
  margin-bottom: 22px;
  /* padding-top: -10px; */
}

/* Styles for the modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  padding-top: 90px;
  font-weight: 900;
}

.modal-content {
  background: radial-gradient(
    164.75% 100% at 100% 0,
    #334155 0,
    #0f172a 48.73%
  );
  color: #cbcbcb;
  margin: 5% auto;
  /* padding: 20px; */
  /* padding-bottom: 10px; */
  border: 4px solid #334155;
  width: 260px;
  height: 50px;
  text-align: center;
  padding-bottom: 50px;

  border-radius: 10px;
}

.close {
  color: #aaa;
  font-size: 20px;
  font-weight: bold;
  margin-left: 233px;
  padding-bottom: 10px;
}

.close:hover,
.close:focus {
  color: #64ccc5;
  text-decoration: none;
  cursor: pointer;
}

#weight {
  border-radius: 5px;
  padding-top: 4px;
  padding-bottom: 4px;
}

#height {
  border-radius: 5px;
  padding-top: 4px;
  padding-bottom: 4px;
}

#neck {
  border-radius: 5px;
  padding-top: 4px;
  padding-bottom: 4px;
}

#waist {
  border-radius: 5px;
  padding-top: 4px;
  padding-bottom: 4px;
}

#hip {
  width: 242px;
  border-radius: 5px;
  padding-top: 4px;
  padding-bottom: 4px;
}
#weight:focus {
  border: 2px solid magenta;
}
