#wpc-budget-from-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0 15px 0;
}

#wpc-budget-from-cart a {
    color: #103761;
    font-weight: 500;
}

#wpc-budget-from-cart button {
    width: 300px;
    height: 35px;
    max-width: 350px;
    min-width: 250px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #103761;
    border: none;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#wpc-budget-from-cart button:hover {
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
}

#wpc-budget-from-cart button .label {
    position: relative;
    line-height: 17px;
}

#wpc-budget-from-cart .spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    position: absolute;
    right: -25px;
}

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

#wpc-budget-from-cart .logged-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#wpc-budget-from-cart .logged-section p {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
    height: 20px;
}

#wpc-budget-from-cart .logged-section p.error {
    color:red;
}

#wpc-budget-from-cart .budget-from-cart-message a {
    transition: transform 0.3s ease;
    display: inline-block;
}

#wpc-budget-from-cart .budget-from-cart-message a:hover {
    transform: translateY(-3px);
}