:root {
    --primary-color: #019c7c;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --error-color: #e74c3c;
    --success-color: #27ae60;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/*
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: var(--text-color);
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.StripeElement {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    background-color: white;
    transition: border-color 0.3s;
}

.StripeElement--focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(1, 156, 124, 0.2);
}

.StripeElement--invalid {
    border-color: var(--error-color);
}

.StripeElement--complete {
    border-color: var(--success-color);
}

.card-errors {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

button {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #017c63;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

.success-message {
    text-align: center;
    color: var(--success-color);
    padding: 15px;
    background-color: rgba(39, 174, 96, 0.1);
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.error-message {
    text-align: center;
    color: var(--error-color);
    padding: 15px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.card-brand {
    height: 24px;
    margin-top: 8px;
}*/




.impsStripe {
    padding: 0.75rem;
    border: 1px solid #dadada;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #5a3921;
}