found the solution it’s this css, and you need to use !important
.woocommerce-message, .woocommerce-error, .woocommerce-info {
padding: 1em 1em 1em 3.5em;
margin: 0 0 2em;
position: relative;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background: #fcfbfc;
background: -webkit-gradient(linear, left top, left bottom, from(#fcfbfc), to(#f7f6f7));
background: -webkit-linear-gradient(#fcfbfc, #f7f6f7);
background: -moz-linear-gradient(center top, #fcfbfc 0%, #f7f6f7 100%);
background: -moz-gradient(center top, #fcfbfc 0%, #f7f6f7 100%);
color: #5e5e5e;
text-shadow: 0 1px 0 #ffffff;
list-style: none outside;
width: auto;
-webkit-box-shadow: inset 0 -2px 6px rgba(0,0,0,0.05), inset 0 -2px 30px rgba(0,0,0,0.015), inset 0 1px 0 #fff, 0 1px 2px rgba(0,0,0,0.3);
box-shadow: inset 0 -2px 6px rgba(0,0,0,0.05), inset 0 -2px 30px rgba(0,0,0,0.015), inset 0 1px 0 #fff, 0 1px 2px rgba(0,0,0,0.3)
}
.woocommerce-message:after, .woocommerce-error:after, .woocommerce-info:after {
content: "";
display: block;
clear: both
}
.woocommerce-message:before, .woocommerce-error:before, .woocommerce-info:before {
content: "";
height: 1.5em;
width: 1.5em;
display: block;
position: absolute;
top: 0;
left: 1em;
font-family: sans-serif;
font-size: 1em;
line-height: 1.5;
text-align: center;
color: #fff;
text-shadow: 0 1px 0 rgba(0,0,0,0.2);
padding-top: 1em;
-webkit-border-bottom-left-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomleft: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
box-shadow: inset 0 -1px 0 0 rgba(0,0,0,0.1);
-webkit-box-shadow: inset 0 -1px 0 0 rgba(0,0,0,0.1);
-moz-box-shadow: inset 0 -1px 0 0 rgba(0,0,0,0.1)
}
.woocommerce-message .button, .woocommerce-error .button, .woocommerce-info .button {
float: right
}
.woocommerce-message li, .woocommerce-error li, .woocommerce-info li {
list-style: none outside;
padding-left: 0;
margin-left: 0
}
.woocommerce-message {
border-top: 3px solid #8fae1b
}
.woocommerce-message:before {
background-color: #aafcfa;
content: "\2713"
}
.woocommerce-info {
border-top: 3px solid #1e85be
}
.woocommerce-info:before {
font-family: Times, Georgia, serif;
font-style: italic;
background-color: #aafcfa;
content: "i"
}
.woocommerce-error {
border-top: 3px solid #b81c23
}
.woocommerce-error:before {
background-color: #b81c23;
content: "0d7";
font-weight: 700
}