
form#payment-form #card-element {
  border-radius: 4px 4px 0 0 ;
  padding: 12px;
  border: 1px solid #ccc;
  height: 44px;
  width: 100%;
  background: white;
}
form#payment-form button {
  color: #ffffff;
  font-family: Arial, sans-serif;
  border-radius: 0 0 4px 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}
form#payment-form input {
  width: 100%;
  margin: 0;
  margin-bottom: 10px;
  border-radius: 5px;

  padding: 20px 15px;
}
form#payment-form input::placeholder { 
  font-size: 16px;
}
    
form#payment-form .result-message {
    font-weight: 600;	
}
form#payment-form #card-error {
    color: #fa755a;
    font-weight: 600;	
    margin-top: 10px;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

/* Stripe Payment Page  Start */
.payment-container {
    background: white;
    border-radius: 8px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    max-width: 500px;
    width: 100%;
    padding: 20px;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-header h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.payment-amount {
    font-size: 45px;
    font-weight: bold;
    /* color: #667eea; */
    margin: 0;
}

.payment-description {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

#payment-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 7px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
}

#card-element {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s;
}

#card-element.StripeElement--focus {
    /* border-color: #667eea; */
}

#card-errors {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
}

#submit-button {
    width: 100%;
    padding: 16px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0;
}

#submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(60, 60, 60, 0.4);
}

#submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.success-message,
.error-message {
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.secure-badge {
    text-align: center;
    margin-top: 20px;
    color: #999;
    font-size: 13px;
}

.secure-badge svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

/* Stripe Payment Page  End */


#summarySection input[type="checkbox"] {
    width: 22px;
    height: 22px;
    top: 5px;
    position: relative;
    margin-right: 4px;
}

.modal-dialog .form-right .chkbox span {
    line-height: 40px;
    padding-bottom: 6px;
    display: inline-block;
}

.modal-dialog #processingSection {
    color: #333;
    font-weight: 500;
    font-size: 19px;
}
