Having trouble adding a border to my bootstrap form box. I've tried applying border style properties but it doesn't seem to be working. Any suggestions?
This is the class for the form box:
<div class="form-box">
<div class="form-top">
<div class="form-top-left">
And here is the corresponding CSS code:
.form-box {
margin-top: 0px;
border-radius: 25px;
border-bottom-style: solid;
border-color: #50e54b;
}