.calculator {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  margin: 0 auto;
}

.form {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;

  &__label {
    display: block;
    width: 100%;
    color: #545559;
    margin-bottom: 5px;
    font-weight: bold;
  }
}

.resultBox {
  width: 100%;
  text-align: center;
  border-radius: 40px;
  padding: 80px;
  border: 2px solid #9b9b9d;
  box-shadow: 0 0 20px #0000003b;

  &__title {
    font-size: 32px;
    color: black;

    &_small {
      font-size: 26px;
      font-weight: bold;
    }
  }

  &__result {
    font-size: 24px;

    &_small {
      font-size: 20px;
      font-weight: bold;
      color: #545559;
    }
  }
}
