/**
 * COAMember Public Styles
 */

.coamember-payment-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.coamember-plan-details {
    margin-bottom: 20px;
}

.coamember-plan-details h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.coamember-plan-price {
    font-size: 32px;
    font-weight: 600;
    color: #2271b1;
    margin: 10px 0;
}

.coamember-checkout-button {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.coamember-checkout-button:hover {
    background: #135e96;
}

.coamember-checkout-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.coamember-checkout-status.error {
    background: #fcf0f1;
    color: #d63638;
    border: 1px solid #d63638;
}

.coamember-checkout-status.success {
    background: #f0f6fc;
    color: #00a32a;
    border: 1px solid #00a32a;
}

.coamember-login-required {
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
}

