body {
  padding: 0;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 0;
}

.calc-title {
  font-size: 2vw;
  text-align: center;
  font-weight: 700;
  margin: 30px 0;
}

hr {
  width: 100%;
  margin: 20px 0;
}

.calc-boxes {
  width: 100%;
  margin: 0 auto;
  height: fit-content;
  background-color: white;
  padding: 10px;
  box-sizing: border-box;

  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calc-box {
  min-width: 200px;
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  gap: 10px;
}

label,
span {
  color: black;
  font-size: 20px;
  font-weight: 500;
}

input,
select {
  width: 200px;
  height: 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #a4bd28;
  text-align: center;
}

.calc-btn {
  text-align: center;
  margin: 25px;
}

.btn {
  width: 180px;
  height: 40px;
  cursor: pointer;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #555555;
  text-align: center;
  transition: 0.3s;
}

.btn:hover {
  background-color: #7d28bd;
  color: #dddddd;
}

.result-box {
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.result-inputs {
  display: flex;
  flex-direction: column;
}

.result-inputs > div {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #7d28bd;

}

.input_box {
  display: flex;
  align-items: center;
  width: 90%;
  justify-content: space-between;
}
.input_box input {
  cursor: pointer;
  width: 80%;
}
.input_box span {
  width: 20%;
  text-align: center;
  font-size: 17px;
}
