.pageWrapper {
  padding: 20px;
}

.cardBox {
  padding: 3px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.sectionTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.subTitle {
  font-size: 16px;
  font-weight: 600;
  color: #444;
}

.checkbox {
  margin-top: 10px;
}

.orderRow {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  gap: 12em;
}

.totalRow {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-top: 10px;
}

.submitBtn {
  /* margin-top: 20px; */
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  background: #1e42dd;
  color: #fff;
  border: none;
  font-size: 16px;
}

/* CheckoutForm.module.css */
.requiredStar {
  color: #ef3e46;
  font-weight: 600;
}

.wrapper {
  width: 100%;
  display: flex;
  /* justify-content: center; */
}

.card {
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  width: 100%;
  margin-bottom: 2em;
  /* max-width: 900px; */
}

.text {
  margin: 0;
  font-size: 15px;
  color: #4a4a4a;
}

.icon {
  margin-right: 5px;
}

.text a {
  color: #3b82f6; /* Same light blue link color */
  text-decoration: none;
}

.text a:hover {
  text-decoration: underline;
}

.cardWrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cardBox {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flexRow {
  display: flex;
  gap: 16px;
}

.flexItem {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.inputLabel {
  font-size: 14px;
  margin-bottom: 4px;
}

.inputField {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.checkoutBox {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 20px;
}

.inputWrapper {
  position: relative;
}

.stripeInput {
  border: 1px solid #ced4da;
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  background: white;
}

.cardIcon {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 40px;
  transform: translateY(-50%);
  opacity: 0.9;
}

.priceTextColor {
  color: #a3a5a9;
  font-size: 14px;
}
