.boa-payment-page {
    max-width: 720px;
    margin: 40px auto;
    padding: 20px;
}

.boa-payment-card {
    background: #ffffff;
    border: 1px solid #d9dee7;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.boa-payment-card h2 {
    margin: 0 0 24px;
    font-size: 28px;
    font-weight: 700;
}

.boa-payment-form {
    display: block;
}

.boa-form-group {
    margin-bottom: 18px;
}

.boa-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.boa-form-group input,
.boa-form-group select {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #cfd6df;
    border-radius: 8px;
    font-size: 16px;
}

.boa-form-group input:focus,
.boa-form-group select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.boa-payment-review {
    border: 1px solid #e1e5eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

.boa-payment-review-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 15px;
    border-bottom: 1px solid #e1e5eb;
}

.boa-payment-review-row:last-child {
    border-bottom: none;
}

.boa-payment-review-row strong {
    color: #333333;
}

.boa-payment-review-row span {
    color: #555555;
    word-break: break-word;
    text-align: right;
}

.boa-payment-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.boa-btn {
    display: inline-block;
    padding: 11px 18px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.2;
}

.boa-btn-primary {
    background: #0d6efd;
    color: #ffffff;
}

.boa-btn-primary:hover {
    background: #0b5ed7;
    color: #ffffff;
}

.boa-btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.boa-btn-secondary:hover {
    background: #5c636a;
    color: #ffffff;
}