body{
    background-color: #cac6ce;
    text-align: center;
}
#wrapper{
    position:relative;
   margin-top: 200px;
}
#loginContainer{
    width:310px;
    margin-top: 0;
    padding: 30px 25px;
    background-color: #fff;
   
    border-radius: 5;
    position:absolute;
    left:50%;
   margin-left: -202px;
}
input[type=text],[type=email],[type=password] {
    padding: 5px;
    width: 100%;
    height:40px;
    margin-top: 10px;
    font-size:18px;
}
input[type=submit]{
    background:linear-gradient(to bottom, #22abe9 5%, #36caf0 100%);
    border: 1px solid #0F799E;
    color:#fff;
    width:320px;
    height:40px;
    margin-top: 15px;
    box-shadow:inset 01px 0 0 #22abe9;
    font-size: 18px;
    font-weight:700;
    text-shadow: 0 1px 0 #13506D;
    cursor: pointer;
}
input[type=submit]:hover{
    background: linear-gradient(to bottom, #36caf0 5%, #22abe9 100%);
}
a{
    text-decoration: none;
    color:#6495ed;
}
#signupContainer{
    width:310px;
    margin-top: 0;
    padding: 30px 25px;
    background-color: #fff;
    border:1px solid #000;
    border-radius: 5;
    position:absolute;
    left:50%;
    margin-left:-150px;
    display: none;
}
input:required:invalid,input:focus:invalid{
    background-image: url('invalid.png');
    background-position: right top;
    background-repeat: no-repeat;
}
input:required:valid{
    background-image: url('valid.png');
    background-position: right top;
    background-repeat: no-repeat;
}
.error_message{
    font-weight: bold;
    color:red;
}
.success_message{
    font-weight: bold;
    color:green;
}
       body{
	margin:0;
	padding:0;
	font-family:"arial",heletica,sans-serif;
	font-size:12px;
    background: #2980b9 url('https://static.tumblr.com/03fbbc566b081016810402488936fbae/pqpk3dn/MRSmlzpj3/tumblr_static_bg3.png') repeat 0 0;
	-webkit-animation: 10s linear 0s normal none infinite animate;
	-moz-animation: 10s linear 0s normal none infinite animate;
	-ms-animation: 10s linear 0s normal none infinite animate;
	-o-animation: 10s linear 0s normal none infinite animate;
	animation: 10s linear 0s normal none infinite animate;
 
}
 
@-webkit-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@-moz-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@-ms-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@-o-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
