@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

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

/* h1, h2 */

h1 {
  color: #2b2e39;
  font-size: 2rem;
  margin-bottom: 6rem;
}
h2 {
  color: #2b2e39;
  font-size: 3.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
}

/* Modal */
.modal-body {
  text-align: center;
  color: #8000ae;
}

/* Columns */

.col1 {
  height: 100vh;
  border-radius: 0px 220px 220px 0px;
  z-index: 5;
  background: #fff;
  width: 80%;
}

.col2 {
  background: linear-gradient(to right, #ac6eff 0%, #3628cf 100%);
  right: 0;
  top: 0;
  height: 100vh;
  width: 50%;
  bottom: 0;
  position: fixed;
}

/* Paragraph */

.par {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: normal;
}

/* Inputs */
.inputs {
  display: flex;
  align-items: center;
  width: 100%;
}

input,
select {
  border-radius: 2rem;
  margin-right: 2rem;
  /* color: #9ea0a2; */
  border: 1px solid #730bfc;
  padding: 0.5rem;
  width: 13rem;
  margin-top: 3rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.inputs input:focus,
select:focus {
  box-shadow: 2px 2px 14px #5b16b4;
  transition: all 1s;
}

option {
  color: #5b1dab;
  font-size: 0.8rem;
}

.input-icons {
  position: relative;
  margin-bottom: 1rem;
}

.input-icons i {
  position: absolute;
  left: 175px;
  top: 60px;
  color: #8d9092;
  font-size: 1.2rem;
}

input[id="quantity"]::-webkit-inner-spin-button,
input[id="quantity"]::-webkit-calendar-picker-indicator {
  color: #fff;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  appearance: textfield;
}

.without-icon {
  appearance: none;
  background-color: #fff;
}

/* Buttons */

.calc-btn {
  margin-top: 5rem;
}

button {
  padding: 0.5rem;
  background: linear-gradient(to right, #3528bb 0%, #ac6eff 100%);
  opacity: 0.9;
  border: none;
  border-radius: 2rem;
  width: 12rem;
  color: #fff;
  font-size: 1.1rem;
}

button:hover {
  box-shadow: 2px 2px 14px #5b16b4;
  transition: all 1s;
}

@media screen and (max-width: 992px) {
  .inputs {
    display: block;
    margin-left: 7rem;
    width: 100%;
  }

  input,
  select {
    margin-right: 20rem;
    width: 20rem;
    padding: 0.6rem;
    font-size: 0.7rem;
  }

  .input-icons i {
    left: 300px;
    top: 60px;
    font-size: 0.8rem;
  }

  .par {
    font-size: 1rem;
  }

  .calc-btn {
    margin-top: 2.5rem;
    margin-right: 4rem;
    text-align: center;
  }

  h1 {
    margin-right: 5rem;
    text-align: center;
    margin-bottom: 2.2rem;
    font-size: 2rem;
  }
  h2 {
    margin-right: 5rem;
    text-align: center;
    font-size: 1.8rem;
  }

  .col1 {
    height: 100vh;
    z-index: 5;
    background: #fff;
    width: 90%;
  }

  .col2 {
    width: 80%;
  }

  button {
    text-align: center;
    width: 20rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  input,
  select {
    width: 15rem;
    padding: 0.6rem;
    font-size: 0.7rem;
  }

  h1,
  h2 {
    margin-right: 1rem;
  }

  .input-icons i {
    left: 219px;
    top: 60px;
    font-size: 0.7rem;
  }

  .calc-btn {
    margin-top: 2.5rem;
    margin-left: 5.2rem;
  }

  button {
    width: 15rem;
  }
}

@media screen and (max-width: 600px) {
  .col1 {
    border-radius: 15%;

    z-index: 5;
    background: #fff;
    width: 80%;
  }
  .col2 {
    width: 60%;
    max-height: 100vh;
  }

  h1 {
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  h2 {
    font-size: 1.3rem;
  }

  .inputs {
    display: block;
    margin-left: 1rem;
    width: 100%;
  }

  input,
  select {
    margin-left: 2rem;
    width: 12rem;
    font-size: 0.7rem;
  }

  .input-icons i {
    left: 205px;
    top: 60px;
    font-size: 0.7rem;
  }

  .input-icons {
    margin: 0;
  }

  .calc-btn {
    text-align: center;
    margin-top: 3rem;
    margin-left: 3.5rem;
  }

  .par {
    width: 100%;
    font-size: 0.8rem;
  }

  button {
    margin-right: 5rem;
    width: 12rem;
    font-size: 0.9rem;
  }
}
