/* WooCommerce integration styles for login page */
.woocommerce-account-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.woocommerce-account-links a {
    margin: 0 10px;
    color: #FC4C02;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.woocommerce-account-links a:hover {
    text-decoration: underline;
    color: #E34402;
}

/* WooCommerce notices styling */
.woocommerce-notices-wrapper {
    max-width: 450px;
    margin: 0 auto 20px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-left: 4px solid #FC4C02;
}

.woocommerce-error {
    border-left-color: #e2401c;
}

.woocommerce-info {
    border-left-color: #3D9CD2;
}

/* Responsive styles */
@media (max-width: 576px) {
    .woocommerce-account-links {
        flex-direction: column;
        align-items: center;
    }
    
    .woocommerce-account-links a {
        margin: 5px 0;
    }
}
