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

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

body {
  background-color: var(--bs-light) !important;
  scroll-behavior: smooth;
}

#container {
  background-color: var(--bs-white);
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 1rem 2.5rem;
  max-width: 700px;
}

#title {
  font-size: 2rem;
  font-weight: 500;
}

#subtext {
  font-size: 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

#form .form-control {
  width: 100%;
}

#packages {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

#checkbox-alert,
#coupon-code-alert {
  display: none;
  padding: 10px 16px;
  font-size: 0.8rem;
}

#form .form-check {
  display: flex;
  align-items: center;
}

#form .btn-outline-primary {
  transition: all 0.3s ease;
  border: 1px solid lightgray;
}

#form .btn-outline-primary span {
  color: black;
}

#form .btn-outline-primary:hover {
  background-color: #e6efff;
  border-color: #e6efff;
  transition: all 0.3s ease;
}

#form .btn-outline-primary:hover {
  color: #0d6efd;
}

.packages-title {
  font-size: 1.8rem;
  text-transform: uppercase;
}

#coupon-code-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

#form #coupon-code {
  width: 300px;
}

#applyCoupon {
  display: flex;
  flex-direction: column;
}

#apply-coupon-btn {
  max-width: 100px;
}

#form #keyword #keyword-title {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

#form #keyword textarea {
  width: 100%;
}

#submit {
  font-size: 1.2rem;
}

.container:nth-child(2) {
  display: none;
}

#container:nth-child(2) #order-summary p {
  margin: 0 0 0.75rem;
}

@media (min-width: 769px) {
  #form .form-control {
    width: 50%;
  }
  #applyCoupon {
    flex-direction: row;
  }
  #paypal-button {
    max-width: 300px;
  }
}
