/* Base style */
#regform {
    border-right: 1px solid silver;
  }
  
  /* Media query to hide the border on smaller screens */
  @media (max-width: 768px) {
    #regform {
      border-right: none !important;
    }
  }

.form-check-input {
    border-color: #333; /* Adjust the color as needed */
}

.form-check-input {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

#discountCode {
    text-align: center;
}

.selected-plan {
    margin-bottom: 10px;
    text-align: center;
    padding: auto;
    margin-bottom: 10px;
}

.selected-plan img {
    display: block;
    max-width: 100px;
    height: auto;
    margin:auto;
    margin-bottom: 10px;
}

.selected-plan h3 {
    margin:auto;
}

.checkout-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}
.checkout-summary .summary-item {
    margin-bottom: 10px;
}
.checkout-summary .total {
    font-weight: bold;
}