I'm facing an issue with my login form that displays perfectly fine in all browsers except Google Chrome. In Chrome, it tends to get distorted more often than not.
CSS
* {
margin: 0;
padding: 0;
width: auto;
}
body {
background: #E8E8E8;
}
#logo {
width: 244px;
height: 70px;
margin: 0 auto;
border: 0;
background: url(../img/logo.png) no-repeat;
}
#loginbox {
width: 330px;
height: auto;
border: 1px solid #6A6A6A;
background: url(../img/bg-top-login.png) repeat-x;
margin: 0 auto;
padding: 5px;
border-radius: 5px 5px 0 0;
margin-top: 80px;
box-shadow: 0 0 10px #828282;
-webkit-box-shadow: 0 0 10px #828282;
-moz-box-shadow: 0 0 10px #828282;
}