/*botofoxcom/wp-content/plugins/botofox-partner-system/assets/css/partner-styles.css*/
/* Partner Registration Form */
.partner-registration-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.info-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}
.info-box ul {
    margin-left: 20px;
}
.submit-button {
    background: #6C44E4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.submit-button:hover {
    background: #623cd5;
}

/* Coupon Form */
.custom-coupon-field {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.coupon-form {
    display: flex;
    gap: 10px;
}
#custom_coupon_code {
    flex: 1;
}
.woocommerce-error, 
.woocommerce-message {
    padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    border-radius: 4px;
}
.woocommerce-message {
    background-color: #f7f6f7;
    border-left: 5px solid #6C44E4;
}
.woocommerce-error {
    background-color: #f7f6f7;
    border-left: 5px solid #b81c23;
}

/* Spinner-Stile */
#coupon_loading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

/* Größe und Aussehen des Spinners anpassen */
.spinner {
    display: inline-block;
    width: 24px;  /* Größe des Spinners verringern */
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.1); /* Heller Rand */
    border-top-color: #6C44E4; /* Akzentfarbe Lila */
    border-radius: 50%;
    animation: spin 0.8s linear infinite; /* Geschwindigkeit anpassen */
}

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

.woocommerce-checkout-review-order-table .cart-subtotal {
    display: none;
}

