.sec-form-container {
max-width: 100%;
margin: 48px auto;
padding: 0 24px;
}
.sec-membership-form-wrapper {
background: white;
border-radius: 16px;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
overflow: hidden;
}
.sec-form-header {
background: linear-gradient(135deg, #057ffd 0%, var(--sec-btn-color-2, #3880ec) 100%);
padding: 32px 28px;
text-align: center;
color: var(--sec-btn-text-color, #ffffff);
}
.sec-form-header h2 {
margin: 0 0 8px 0;
font-size: 1.5em;
font-weight: 700;
color: var(--sec-btn-text-color, #ffffff);
}
.sec-form-header p {
margin: 0;
font-size: 0.95em;
opacity: 0.9;
line-height: 1.5;
}
.sec-pricing-preview {
display: inline-flex;
align-items: center;
gap: 12px;
margin-top: 14px;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(8px);
padding: 8px 18px;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.sec-pricing-name {
font-size: 0.9em;
font-weight: 500;
}
.sec-pricing-amount {
font-size: 1.2em;
font-weight: 700;
}
.product-image{
width: 64px;
height: 64px;
position: relative;
overflow: hidden; display: inline-flex;
align-items: center;
justify-content: center;
}
.product-image .product-logo{
width: 64px !important;
height: 64px !important;
max-width: 64px !important;
max-height: 64px !important;
display: block;
}
.checkout-element {
background-color: #fff !important;
}
.quantity-badge {
position: absolute;
top: -6px;
right: -6px;
background: #e10600;
color: #fff;
font-size: 12px;
font-weight: bold;
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
} .sec-contact-form {
padding: 28px;
}
.sec-form-row {
margin-bottom: 18px;
}
.sec-form-row-2col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.sec-form-row-3col {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 14px;
}
.sec-form-group {
display: flex;
flex-direction: column;
}
.sec-form-group label {
font-size: 13px;
font-weight: 600;
color: #333;
margin-bottom: 5px;
}
.sec-required {
color: #dc3545;
}
.sec-form-group input {
padding: 11px 13px;
border: 1px solid #d1d5db;
border-radius: 8px;
font-size: 14px;
font-family: inherit;
color: #333;
background: #fafafa;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
outline: none;
width: 100%;
box-sizing: border-box;
}
.sec-form-group input:focus {
border-color: var(--sec-btn-color, #b13030);
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
background: white;
}
.sec-form-group input::placeholder {
color: #9ca3af;
}
.sec-form-group input.sec-input-error {
border-color: #dc3545;
box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
} .sec-form-error {
background: #fef2f2;
border: 1px solid #fecaca;
color: #dc2626;
padding: 12px 16px;
border-radius: 8px;
font-size: 13px;
margin-bottom: 18px;
line-height: 1.4;
} .sec-submit-btn {
width: 100%;
padding: 15px 24px;
background: linear-gradient(135deg, #139204 0%, #36b827 100%);
color: var(--sec-btn-text-color, #ffffff);
border: none;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
letter-spacing: 0.3px;
margin-top: 6px;
}
.sec-submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.sec-submit-btn:active {
transform: translateY(0);
}
.sec-submit-btn:disabled {
opacity: 0.7;
cursor: not-allowed;
transform: none;
box-shadow: none;
} .sec-thankyou-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(6px);
z-index: 999999;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.sec-thankyou-overlay.active {
opacity: 1;
visibility: visible;
}
.sec-thankyou-container {
background: white;
border-radius: 20px;
padding: 48px 40px;
max-width: 480px;
width: 90%;
text-align: center;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
transform: scale(0.9);
transition: transform 0.3s ease;
}
.sec-thankyou-overlay.active .sec-thankyou-container {
transform: scale(1);
}
.sec-thankyou-icon {
width: 72px;
height: 72px;
background: linear-gradient(135deg, #34d399, #10b981);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
font-size: 32px;
color: white;
font-weight: bold;
}
.sec-thankyou-container h2 {
margin: 0 0 12px 0;
font-size: 1.5em;
color: #1f2937;
font-weight: 700;
}
.sec-thankyou-container p {
margin: 0 0 28px 0;
color: #6b7280;
font-size: 15px;
line-height: 1.6;
}
.sec-thankyou-btn {
padding: 14px 40px;
background: linear-gradient(135deg, var(--sec-btn-color, #cc1d1d) 0%, var(--sec-btn-color-2, #ee3636) 100%);
color: var(--sec-btn-text-color, #ffffff);
border: none;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.sec-thankyou-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
} .sec-loading-spinner {
display: inline-block;
width: 40px;
height: 40px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: white;
animation: sec-spin 1s ease-in-out infinite;
margin-bottom: 20px;
}
@keyframes sec-spin {
to { transform: rotate(360deg); }
} @media (max-width: 768px) {
.sec-form-container {
margin: 24px auto;
padding: 0 16px;
}
.sec-membership-form-wrapper {
border-radius: 12px;
}
.sec-form-header {
padding: 24px 20px;
}
.sec-form-header h2 {
font-size: 1.3em;
}
.sec-contact-form {
padding: 20px;
}
.sec-form-row-2col,
.sec-form-row-3col {
grid-template-columns: 1fr;
gap: 0;
}
.sec-form-row-2col .sec-form-group,
.sec-form-row-3col .sec-form-group {
margin-bottom: 14px;
}
.sec-thankyou-container {
padding: 36px 24px;
}
.sec-thankyou-container h2 {
font-size: 1.3em;
}
}
@media (max-width: 480px) {
.sec-form-container {
padding: 0 12px;
margin: 16px auto;
}
.sec-form-header h2 {
font-size: 1.2em;
}
.sec-pricing-preview {
flex-direction: column;
gap: 4px;
}
.sec-submit-btn {
font-size: 15px;
padding: 14px 20px;
}
}