I need to add division top of the my form. i need to reduce alpha (rgba) then form element will be show. (this should be responsive also). please check my code
.top-div {
background-color: rgba(0, 0, 255, 0.3);
position: relative;
z-index: 10
}
.form {
position: relative;
z-index: 1;
}
<div class="top-div">
<form class="form">
Name <input type="text" /> Age
<input type="text" /> Address
<input type="text" />
</form>
</div>
mainly i need to add color with alpha to my top div. check my image