.dsi-invoice-wrapper,
.dsi-invoice-wrapper * {
    box-sizing: border-box;
}

.dsi-invoice-wrapper {
    width: 100%;
    
}

.dsi-product-summary {
    margin-bottom: 22px;
}

.dsi-product-title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.dsi-product-price {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.dsi-invoice-form {
    
}

.dsi-field {
    display: grid;
    gap: 7px;
}
.dsi-field-box{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dsi-field label {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.dsi-field input, .dsi-field select {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline: none;
    background: #ffffff;
    color: #000;
    font-size: 20px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.dsi-field input:focus {
    border-color: #635bff;
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.15);
}

.dsi-submit-button {
    width: 100%;
        margin: 20px 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    border: 2px solid #3AEDED;
    border-radius: 6px;
    background: #0000;
    color: #3AEDED;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.dsi-submit-button:hover {
    transform: translateY(-1px);
    background-color: #3AEDED;
        color: #52148E;
}

.dsi-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

.dsi-message {
    font-size: 18px;
    line-height: 1.6;
}

.dsi-message-success {
    background: #fff;
    color: #08783e;
    padding: 10px 30px;
    border-radius: 9px;
}

.dsi-message-error,
.dsi-error {
    color: #b42318;
}

.dsi-invoice-link {
    display: inline-block;
    margin-top: 5px;
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}