/* Payment Form Container */
.csp-payment-form {
  max-width: 700px;
  
/*   margin: 40px auto; */
/*   background: #fbf9f9;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #15b7cd; */
  
}

/* Form Heading */
.csp-payment-form h3 {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
}

/* Input Fields */
.csp-payment-form input[type="text"],
.csp-payment-form input[type="email"],
.csp-payment-form input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 25px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px;
  transition: border-color 0.3s;
}

.csp-payment-form input:focus {
  border-color: #00bcd4;
  outline: none;
}

/* Stripe Card Element */
#csp-card-element {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  margin-bottom: 15px;
}

/* Submit Button */
.csp-payment-form button[type="submit"] {	/* width: 100%; */	background: #15b7cd;	color: #fff;	border: none;	padding: 14px 30px;	font-size: 16px;	/* font-weight: bold; */	border-radius: 6px;	cursor: pointer;	transition: background 0.3s ease;}

.csp-payment-form button:hover {
  background: #0097a7;
}

.csp-payment-form button:disabled {
  background: #b2ebf2;
  cursor: not-allowed;
}

/* Message Styling */
#csp-error-message {
  color: #e53935;
  margin-top: 10px;
  text-align: center;
}

#csp-success-message {
  color: #43a047;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 500px) {
  .csp-payment-form {
    padding: 20px;
  }
}