/* ===== Stripe UI ===== */
.stripe-wrapper {
    max-width: 520px;
}

.stripe-label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.stripe-box {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.stripe-field {
    padding: 14px 16px;
}

.stripe-field.full {
    border-bottom: 1px solid #E5E7EB;
}

.stripe-row {
    display: flex;
}

.stripe-row .stripe-field {
    flex: 1;
}

.stripe-row .stripe-field:first-child {
    border-right: 1px solid #E5E7EB;
}

.stripe-box:focus-within {
    border-color: #22C55E;
    box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}

.stripe-error {
    margin-top: 6px;
    font-size: 14px;
    color: #EF4444;
}


/* Button payment */
.btn-pay {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #3F7F4C;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.btn-pay:hover {
    background: #2F6A3C;
}

.btn-pay:disabled {
    opacity: .6;
    cursor: not-allowed;
}
