Greeting everyone.
I'm trying to put my CSS code on a form using the Wordpress tool called Divi Builder. But the code i put in came out totally diffrent of what i programmed. I already tried almost everything and nothing works. I'll put my CSS code here if you guys could help i'll be totally grateful.
CSS code i made:
._form-content {
display: flex;
flex-direction: row;
gap: 7px;
}
input {
display: flex;
width: 252px;
height: 34px;
border-radius: 8px;
fill: #f9f9f9;
border: 1px solid #b0b0b0;
}
input:focus {
outline-color: #821313;
}
button {
width: 286px;
height: 34px;
border-radius: 10px;
background-color: #821313;
color: #fff;
border: none;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 600;
transition: all 0.3 ease;
}
button:hover {
background-color: #5c0d0d;
}
And again, any help i'll be totally grateful.
I tried re-writting the entire CSS code, tried to put inside the HTML code using the tag.