/* Color variables are now set dynamically in base.html.twig from environment variables */
body {
  min-height: 100vh !important;
  background: radial-gradient(circle at center, var(--bs-primary-lighter) 0%, var(--bs-primary-light) 35%, var(--bs-primary) 100%);
    position: relative;
}
a {
  color: var(--bs-primary);
  text-decoration: none;
}
.font-small {
  font-size: 0.875rem;
}
.font-small-extra {
  font-size: 0.7rem;
}
.font-family {
  font-family: "Poppins", Sans Serif;
}
.bg-primary {
  background-color: var(--bs-primary) !important;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--bs-primary);
  outline: 0;
  box-shadow: none;
}
.form-label {
  font-size: 0.875rem;
}
input::placeholder {
  font-size: 0.75rem;
}
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  letter-spacing: 3px;
}
.btn-primary:focus {
  background-color: transparent;
  border-color: #212529;
  box-shadow: none !important;
  outline: 0;
}
.btn-primary:hover {
  background-color: transparent;
  border-color: #212529;
}
.btn-lg {
  padding: 0.5rem 2rem;
  font-size: 1.25rem;
  border-radius: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.btn-lg span {
  font-size: 0.8rem;
}
.logo-wrapper img {
  width: 10rem;
  height: auto;
}
.icon-wrapper img {
  width: 3rem;
  height: auto;
}
.main-wrapper {
  max-width: 70rem;
  border-radius: 8px;
    overflow: hidden;
}
.credit-card-icons img {
  width: 2rem;
  height: auto;
}
.aside-wrapper {
  font-size: 0.9rem;
  border-radius: 8px 0 0 8px;
  }
  
  .form-wrapper {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 1), 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.payment-for-list-title {
  border-bottom: 1px solid var(--bs-primary-light);
  font-size: 1rem !important;
}
.payment-for-list-item {
  border-bottom: 1px solid var(--bs-primary-light);
  padding: 1.2rem;
  color: white;
}
@media (max-width: 768px) {
  .aside-wrapper {
    /* background-color: white !important; */
  }
  .payment-for-list-title {
    border-bottom: none !important;
  }
  .payment-for-list-item {
    border-bottom: none !important;
    padding: 0.2rem;
  }
}
@media (max-width: 992px) {
  .form-wrapper {
    margin-bottom: -1px; /*Strange Border Bottom Fix*/
    border-start-start-radius: 2rem;
    border-start-end-radius: 2rem;
  }
  .main-wrapper {
    height: 100%;
    box-shadow: none !important;
  }
  .btn-lg {
    width: 100%;
  }
  body {
    background-image: none !important;
  }
}
