.login-container {
    width: 400px;
    max-width: 406px;
    margin: 0 auto 0 auto;
    display: inline-block;
    left: 50%;
    margin-left: -250px;
    top: 30%;
    position: absolute;
    text-align: center;
}

#signup {
    flex: 1;
    padding: 0 25px 25px 25px;
    background: #fff;
    box-shadow: 
        0px 0px 0px 5px rgba( 255,255,255,0.4 ), 
        0px 4px 20px rgba( 0,0,0,0.33 );
/*    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;*/
    display: table;
    position: inline-block;  
}

#signup .header {
    margin-bottom: 0px;
}

#signup .header h3 {
    color: #8b8b8b;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 0px;
}

#signup .header p {
    color: #8f8f8f;
    font-size: 14px;
    font-weight: 300;
}

#signup .sep {
    height: 2px;
    background: #b8b7b7;
    width: 406px;
    margin: 34px 0;
}

#signup .inputs {
    margin-top: 25px;
    width: 100%;
    text-align: center;
}

#signup .inputs label {
    color: #8f8f8f;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 7px;
    display: block;
}

input::-webkit-input-placeholder {
    color:    #b5b5b5;
}

input:-moz-placeholder {
    color:    #b5b5b5;
}

#signup .inputs input[type=text], input[type=password] {
    background: #f5f5f5;
    font-size: 1rem;
/*    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; */
    border: none;
    padding: 13px 10px;
    width: 330px;
    margin-bottom: 20px;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.1 );
    clear: both;
}

#signup .inputs input[type=text]:focus, input[type=password]:focus {
    background: #fff;
    box-shadow: 0px 0px 0px 3px #fff38e, inset 0px 2px 3px rgba( 0,0,0,0.2 ), 0px 5px 5px rgba( 0,0,0,0.15 );
    outline: none;   
}

#signup .inputs .checkboxy {
    display: block;
    position: static;
    height: 25px;
    margin-top: 10px;
    clear: both;
}

#signup .inputs input[type=checkbox] {
    float: left;
    margin-right: 10px;
    margin-top: 3px;
}

#signup .inputs label.terms {
    float: left;
    font-size: 14px;
    font-style: italic;
}

#signup .inputs #submit {
    width: 50%;
    padding: 5px 0;
    color: #fff;
    font-size: 2em;
    font-weight: 500;
    letter-spacing: 4px;
    text-align: center;
    text-decoration: none;
        background: -moz-linear-gradient(
        top,
        #cf7474 0%,
        #ce8686);
    background: -webkit-gradient(
        linear, left top, left bottom, 
        from(#cf7474),
        to(#ce8686));
/*    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;*/ 
    border: 1px solid #737b8d;
    -moz-box-shadow:
        0px 5px 5px rgba(000,000,000,0.1),
        inset 0px 1px 0px rgba(255,255,255,0.5);
    -webkit-box-shadow:
        0px 5px 5px rgba(000,000,000,0.1),
        inset 0px 1px 0px rgba(255,255,255,0.5);
    box-shadow:
        0px 5px 5px rgba(000,000,000,0.1),
        inset 0px 1px 0px rgba(255,255,255,0.5);
    text-shadow:
        0px 1px 3px rgba(000,000,000,0.3),
        0px 0px 0px rgba(255,255,255,0);
    cursor: pointer;
}

#signup .inputs #submit:hover {
    background: -moz-linear-gradient(
        top,
        #e47e7e 0%,
        #e29393);
    background: -webkit-gradient(
        linear, left top, left bottom, 
        from(#e47e7e),
        to(#e29393));
}