.form-control {
  border-radius: 8px;
  height: calc(1.5em + 1rem) !important;
}

.form-label-group > input, .form-label-group > label {
  padding: 0.4em 1em !important;
}

.btn-primary {
  background-color: #007FE0 !important;
  font-weight: bold;
}

.text-info {
  color: #007FE0 !important;
}

.auth-options {
  float: left;
  width: 100%;
}

.auth-options .forgot-password {
  float: left;
}

.auth-options .sign-up {
  float: right;
}

.google-signin-logo {
  display: inline-block;
  position: absolute;
  background-color: white;
  border-radius: 8px;
  margin-left: 75px !important;
  margin-top: 5px;
  padding: 3px !important;
  height: 25px;
  width: 25px;
}

.google-singin-btn {
  padding: 0.5rem 1rem !important;
  height: 2.8em;
  line-height: 1.5em;
  background-color: #007FE0 !important;
  font-size: 0.8em;
}

.form-title {
  color: #1797AF;
  padding-bottom: 5px;
}

.reset-password-container {
  padding-bottom: 10px;
}

.form-actions-btn-group {
  padding-top: 10px;
}

.btn {
  font-size: 0.8em !important;
}

.test {
  color: red;
}

/* Thank You Page  */
.thank-you {
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  min-height: 200px;
  padding: 2rem;
  background: #fff; /* White background */
  border-radius: 15px; /* Adjusted to match your desired rounded corners */
  border: 3px solid #b7f2d6; /* Solid color border */
}

.congrats-message {
  position: relative;
  z-index: 1; /* Ensure the text appears above the pseudo-element */
  color: #17a2b8; /* Change to the color you want for the text */
}

.back-link {
  padding-top: 15px;
  text-decoration: none;
}

.bi.bi-arrow-bar-left:hover {
  fill: #0056b3;
}

/* Checkout Page */
.btn-custom {
  height: 40px;
  padding: 0.4em 1em;
  border-radius: 8px;
}

#coupon::-moz-placeholder {
  color: #b7b6b6;
}

#coupon::placeholder {
  color: #b7b6b6;
}

.credit-card-input {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin: 30px 0px;
  background: #FFF;
  border: 1px solid #ced4da;
}

.input-icon-container {
  position: relative;
  flex-grow: 1;
  margin-right: 10px;
}

.input-icon-container .bi {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 2em;
  color: #495057;
  opacity: 0.5;
}

.input-icon-container .form-control,
.expiry-cvc {
  border: none;
  background-color: transparent;
}

.input-icon-container .form-control {
  padding-left: 50px;
}

.expiry-cvc {
  width: 80px;
  margin-right: 0px;
  flex-grow: 0;
  text-align: center;
}

@media (min-width: 375px) {
  .credit-card-input {
    flex-direction: column;
  }
  .input-icon-container,
.expiry-cvc {
    width: 100%; /* Make inputs full width */
    margin-right: 0px; /* Remove margin right */
  }
  .input-icon-container {
    margin-bottom: 10px; /* Add space between inputs */
  }
  .expiry-cvc:not(:last-child) {
    margin-bottom: 10px; /* Add space between inputs */
  }
  .input-icon-container .form-control {
    padding-left: 40px; /* Adjust padding for smaller screens */
  }
  .input-icon-container .form-control::-moz-placeholder {
    text-align: center;
  }
  .input-icon-container .form-control::placeholder {
    text-align: center;
  }
}
