I created a "holder" for my login box
.box{
background-color: #ffffff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
padding: 1em;
border: 1px solid #d8dadd;
}
.box-login{
margin: 0 auto;
width: 390px;
}
bu the problem is the items(textbox) inside the box isnt responsive, it's acting like a non-responsive item.
Any idea how i can fix this?
Thanks in advance