body {
    font-family: "Nunito", Roboto, Arial;
}

.clear {
    clear: both;
}

#headerDiv {
    border-bottom: 1px solid #999;
    text-align: center;
}

.logo_img {
    height: 48px;
    margin: 10px;
}


.form_container {
    width: 430px;
    max-width: 430px;
    margin: 30px auto 20px;
}

#signup {
    padding: 0px 25px 25px;
    background: #fff;
    box-shadow:
            0px 0px 0px 5px rgba( 255,255,255,0.4 ),
            0px 4px 20px rgba( 0,0,0,0.4 );
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: table;
    position: relative;
}

#signup .header {
    margin: 20px 0;
}

#signup .header h3 {
    color: #333333;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

#signup .header p {
    color: #555555;
    font-size: 16px;
    font-weight: 300;
}

#signup .sep {
    height: 1px;
    background: #e8e8e8;
    width: 380px;
    margin: 0px;
}

#signup .link {
    cursor: pointer;
    text-decoration: underline;
    color: #2b53c5;
}

#signup .link:hover {
    color: #166018;
}

#signup .inputs {
    margin-top: 25px;
}

#signup .inputs label {
    color: #666666;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0px;
    margin-bottom: 7px;
    display: block;
}

input::-webkit-input-placeholder {
    font-size: 100%;
    color:    #999999;
}

input:-moz-placeholder {
    font-size: 100%;
    color:    #999999;
}

#signup .inputs input[type=email], 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: 380px;
    margin-bottom: 20px;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.1 );
    clear: both;
}

#signup .inputs input[type=email]:focus, 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;
}

#signup .inputs #submit {
    width: 380px;
    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,
            #b9c5dd 0%,
            #a4b0cb);
    background: -webkit-gradient(
            linear, left top, left bottom,
            from(#b9c5dd),
            to(#a4b0cb));
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    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);
    display: table;
    position: static;
    clear: both;
}

#signup .inputs #submit:hover {
    background: -moz-linear-gradient(
            top,
            #a4b0cb 0%,
            #b9c5dd);
    background: -webkit-gradient(
            linear, left top, left bottom,
            from(#a4b0cb),
            to(#b9c5dd));
}


/* ------------- PSSWORD AREA ------------- */
#password_area {}
#password_area p {
    padding-top: 10px;
    color: #555555;
    font-size: 16px;
    font-weight: 300;
}
#password_strength {
     width: 380px;
     text-align: center;
     color: #555555;
     border: 1px solid #999999;
     height: 28px;
     background-color: white;
 }
.password_wrong { border: 1px solid red !important; }
.password_good { border: 1px solid green !important; }

#form_check_error {
    display: none;
    width: 380px;
    text-align: center;
    color: red;
    border: 1px solid red;
    background-color: white;
    font-weight: bold;
    padding: 5px;
}