.awcc-registration-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.awcc-registration-wrap h2 {
    margin-bottom: 5px;
    font-size: 28px;
    color: #333;
}

.awcc-price-display {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.awcc-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

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

.awcc-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.awcc-form-group .required {
    color: #dc3545;
}

.awcc-form-group input[type="text"],
.awcc-form-group input[type="email"],
.awcc-form-group input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.awcc-form-group input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.15);
}

.awcc-promo-wrap {
    display: flex;
    gap: 10px;
}

.awcc-promo-wrap input {
    flex: 1;
}

#awcc-promo-message {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

#awcc-card-element {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.2s;
}

#awcc-card-element.StripeElement--focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.15);
}

#awcc-card-errors {
    margin-top: 8px;
    font-size: 13px;
}

.awcc-price-summary {
    background: #f0f7fb;
    border: 1px solid #c8e1f0;
    border-radius: 6px;
    padding: 15px 20px;
    margin: 20px 0;
}

.awcc-price-summary p {
    margin: 5px 0;
    font-size: 15px;
}

#awcc-discount-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.awcc-btn-primary {
    display: block;
    width: 100%;
    padding: 14px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.awcc-btn-primary:hover {
    background: #005a87;
}

.awcc-btn-primary:disabled {
    background: #999;
    cursor: not-allowed;
}

.awcc-btn-secondary {
    padding: 10px 18px;
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.awcc-btn-secondary:hover {
    background: #e0e0e0;
}

.awcc-loading {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #555;
}

.awcc-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ddd;
    border-top-color: #0073aa;
    border-radius: 50%;
    animation: awcc-spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

.awcc-error {
    color: #dc3545;
    background: #fdf0f0;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 14px;
}

.awcc-success {
    text-align: center;
    padding: 40px 20px;
    background: #f0faf0;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
}

.awcc-success h3 {
    color: #28a745;
    margin-bottom: 10px;
}

.awcc-notice {
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 15px;
}

.awcc-notice-info {
    background: #f0f7fb;
    border: 1px solid #c8e1f0;
    color: #31708f;
}

.awcc-notice-warning {
    background: #fff8e1;
    border: 1px solid #ffe082;
    color: #856404;
}

@media (max-width: 600px) {
    .awcc-form-row {
        flex-direction: column;
        gap: 0;
    }
    .awcc-registration-wrap {
        padding: 15px;
    }
}
