body {
    background-color: #50B2F3;
    font-family: "Tahoma";
    padding-top: 20px;
    text-shadow:
            0px 5px 5px rgba(000,000,000,0.3),
            0px 0px 0px rgba(255,255,255,0);
}

.container {
    width: 406px;
    max-width: 406px;
    margin: 0 auto;
}

.container1 {
    width: 740px;
    max-width: 760px;
    margin: auto;
    padding: 20px;
}

#login {
    padding: 0px 25px 25px;
    background: #50B2F3;
    box-shadow:
        0px 0px 0px 5px rgba(255,255,255,04),
        0px 4px 20px rgba(25, 12, 243, 0.33);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: table;
    position: static;
}

#login .header {
    margin-bottom: 20px;
}

#login .header h3 {
    color: #dbd9ff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 10px;
}

#login .header p {
    color: #dbd9ff;
    font-size: 14px;
    font-weight: 300
}

#login .sep {
    height: 1px;
    background: #e8e8e8;
    width: 406px;
    margin: 5px -25px;
}

#login .inputs label {
    color: #f8f8f8;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
}

input::-webkit-input-placeholder {
    color: #e8e8e8;
}

input:-moz-placeholder {
    color: #e8e8e8;
}

#login .inputs input[type=email], input[type=password] {
    background: #5da6d0;
    font-size: 0.8rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    padding: 13px 10px;
    width: 330px;
    margin-bottom: 20px;
    margin-top: 10px;
    box-decoration-break: inset 0px 2px 3px rgba(0,0,0,0.1);
    clear: both;
    text-shadow:
            0px 5px 5px rgba(000,000,000,0.3),
            0px 0px 0px rgba(255,255,255,0);
}

#login .inputs input[type=email]:focus, input[type=password]:focus {
    background: #5da6d0;
    box-shadow: 0px 0px 0px 3px #e8e8e8, inset 0px 2px 3px rgba(0,0,0,0.2),
    0px 5px 5px rgba(0,0,0,0.15);
    outline: none;
}

#login .inpits .remember {
    display: block;
    position: static;
    height: 25px;
    margin-top: 10px;
    clear: both;
}

#login .inputs input[type=checkbox] {
    float: left;
    margin-right: 14px;
    margin-top: 3px;
}

#login .inputs label.terms {
    float: left;
    margin-right: 14px;
    margin-top: 3px;
}

#login .inputs #submit {
    width: 100%;
    margin-top: 20px;
    padding: 15px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    background: -moz-linear-gradient(
        top,
        #3f6a6a 0%,
        #a4b0cb
    );
    background: -webkit-gradient(
        linear, left top, left bottom,
        from(#4f86d0),
        to(#50B2F3)
    );
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #737b8b;
    -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.1);
    text-shadow:
        0px 5px 5px rgba(000,000,000,0.3),
        0px 0px 0px rgba(255,255,255,0);
    display: table;
    position: static;
    clear: both;
}

#login .inputs #submit:hover {
    background: -moz-linear-gradient(
        top,
        #a4b0cb 0%,
        #b9c5dd
    );
    background: -webkit-gradient(
        linear, left top, left bottom,
    from(#50B2F3),
    to(#4f86d0)
    );
}

