I need assistance with my login form that is appearing in a Bootstrap modal. The modal I am using is the standard size, not the larger one. In the form, there are 2 input fields and a login button on the left side, while the right side should contain other login options.
My current page layout looks like this:
container
row
col-sm-6
col-sm-6
The issue arises because the modal's width is set to around 600 pixels, causing the login page to become "responsive" and stack the col-sm-6 elements on top of each other instead of next to each other.
I have tried adjusting the container width using media queries like this:
@media (min-width: 768px) {
.container {
width: 550px;
}
}
However, this solution did not work for me. Do you have any other ideas or suggestions? Any help would be greatly appreciated.