@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

body {
  font-family: "Nunito Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  margin: 0;
}

.visa_image img {
  width: 30%;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}

.top_bar {
  height: 10px;
  width: 100%;
  background-color: #8d153a;
}

.logo_container {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
}

.logo_container img {
  height: 100px;
  width: auto;
}

.form_container {
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.amount label {
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.amount input {
  font-size: 24px;
  text-align: center;
}
.amount {
  padding: 15px;
  /* border: 1px solid #d8d8d8; */
  border-radius: 10px;
  box-shadow: 0 0 35px 9px rgba(0, 0, 0, 0.06);
}

.logo_container h2 {
  font-size: 28px;
  font-weight: 300;
  color: #0000008f;
  line-height: 1.3;
}

.column_ii {
  display: flex;
  gap: 15px;
}

.terms {
  margin-bottom: 20px;
}

.btn-primary:hover {
  background-color: #70122e !important;
}

.footer {
  text-align: center;
}

.footer img {
  height: 80px;
  width: auto;
  margin-top: 15px;
}

.footer {
  height: 100px;
}

.form_container {
  min-height: calc(100vh - 110px);
}

.amount.message {
  margin-top: 30px;
  padding: 30px;
}

.logo_container h4 {
  font-size: 16px;
  font-weight: 400;
  color: #0000008f;
}

.amount h3 {
  font-size: 20px;
}

.amount h6 {
  font-size: 14px;
  font-weight: 300;
}

.amount input {
  width: 70% !important;
}

.amount select {
  text-align: center !important;
}

.invalid-feedback {
  margin-bottom: 10px;
}

.price-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 12px;
}

.price-btn {
  position: relative;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  transition: all 0.2s ease;
}

.price-btn input {
  display: none;
}

.price-btn:hover {
  border-color: #8d153a;
  color: #8d153a;
}

.price-btn input:checked + span,
.price-btn input:checked {
}

.price-btn:has(input:checked) {
  border-color: #8d153a;
  background: #8d153a;
  color: #fff;
}

@media (max-width: 1024px) {
  .amount input {
    width: 60% !important;
  }

  .form_container {
    padding: 0 15px;
    min-height: inherit;
  }

  .logo_container h2 {
    font-size: 18px;
  }

  .footer img {
    width: 100%;
    height: auto;
  }
  .logo_container h4 {
    font-size: 12px;
    font-weight: 400;
    color: #0000008f;
  }
}
