This is how my texbox
This is how I wanted it to look like
This is my HTML script
body {
background-color: grey;
}
#myquestion {
background-color: white;
border-radius: 1.3mm;
border-top: grey;
border-left: grey;
height: 70mm;
width: 100mm;
}
#mybutton {
background-color: lightblue;
border-radius: 1.3mm;
border-right: grey;
border-bottom: grey;
}
<label>Enter your question:</label><br>
<input type="text" id="myquestion"><br>
<button type="button" id="mybutton">Submit</button>
Please help me fix this. I really want to finish my project today since it's a really easy project but I'm new at HTML and CSS and JavaScript so I really hope you can help me!