Image of button with the border
Getting this weird border around a button, tried to delete one by one line of all the div that the button is included in, found out that only thing affecting it is by giving it a background color?
Tried going over and delete one by one line with background color activated, maybe it just doesn't show without, but i couldn't find anything, and nor do I have any idea how it is possible to make divided border with two different colors.
Here is the content in the class for the button:
.btn{
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 16px;
text-align: center;
background-color: rgba(19,106,0,1.00);
border-radius: 25px;
transition: all 0.3s ease 0s;
color: #fff;
margin-right: 20px;
}
It is also inside body, form class and form content, and wrapper (in case that can affect it):
body{
height: 100%;
display: flex;
align-items: center;
padding-top: 40px;
padding-bottom: 40px;
background-color: #FFF;
font: 14px "Montserrat", "Myriad Pro";
}
.wrapper{
width: 450px;
background-color: #FFF;
padding: 10px;
margin: 10px auto;
border: none;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
min-height: 100%;
}
.formlog{
width: 100%;
max-width: 450px;
padding: 15px;
margin: auto;
}
#formcontent{
-webkit-border-radius: 10px 10px 10px 10px;
border-radius: 10px 10px 10px 10px;
background: #FFF;
padding: 30px;
width: 90%;
max-width: 450px;
position: relative;
-webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
text-align: center;
}
```