﻿@import url(http://fonts.googleapis.com/css?family=Bree+Serif);

/*******************
SELECTION STYLING
*******************/

::selection {
    color: #fff;
    background: #6c6c6c; /* Safari */
}

::-moz-selection {
    color: #fff;
    background: #6c6c6c; /* Firefox */
}

/*******************
BODY STYLING
*******************/

#wrapper {
    /* Center wrapper perfectly */
    width: 100%;
    height: 400px;
    margin-top: 18px;
}

/*
.gradient {
	width: 600px;
	height: 600px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -300px;
	margin-top: -300px;
	
	background: url(http://www.demo.amitjakhu.com/login-form/images/gradient.png) no-repeat;
}
*/

/*******************
LOGIN FORM
*******************/
.header_login {
    clear: both;
    margin-bottom: 0px;
}

.login-form {
    width: 226px;
    margin: 0 auto;
    position: relative;
    float: left;
    border-width: 1px;
    border-style: solid;
    border-color: #dedede #bababa #aaa #bababa;
    -moz-box-shadow: 0 3px 3px #ffffff, 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444;
    -moz-box-shadow: 0 3px 3px rgba(255,255,255,.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444;
    -webkit-box-shadow: 0 3px 3px rgba(255,255,255,.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444;
    box-shadow: 0 3px 3px #ffffff, 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444;
    box-shadow: 0 3px 3px rgba(255,255,255,.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #eae8e8;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#eae8e8));
    background-image: -webkit-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: -moz-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: -ms-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: -o-linear-gradient(top, #f6f6f6, #eae8e8);
}


    /*******************
CONTENT
*******************/

    .login-form .content {
        padding: 0 30px 10px 30px;
    }

        /* Input field */
        .login-form .content .input {
            width: 125px;
            padding: 10px 20px;
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 400;
            font-size: 14px;
            color: #9d9e9e;
            text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
            background: #fff;
            border: 1px solid #fff;
            border-radius: 5px;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
            -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
            -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
        }

        /* Second input field */
        .login-form .content .password, .login-form .content .pass-icon {
            margin-top: 25px;
        }



        .login-form .content .input:focus {
            color: #414848;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
            -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
            -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
        }


.content input:focus + div {
    left: -46px;
}

/* Animation */
.input, .user-icon, .pass-icon, .button, .register {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}



/* Login button */
.login-form .footer .button {
    float: right;
    align-items: flex-start;
    text-align: center;
    cursor: default;
    color: buttontext;
    margin-bottom: 25px;
}

/*******************
FOOTER
*******************/

.login-form .footer {
    padding: 15px 30px 0px 30px;
    overflow: auto;
    background-color: #eae8e8;
}


    .login-form .footer .button:focus {
    }

    /* Register button */
    .login-form .footer .register {
        display: block;
        float: left;
        margin-top: 3px;
        background: none;
        border: none;
        cursor: pointer;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 300;
        font-size: 14px;
        color: #414848;
        text-shadow: 0px 1px 0 rgba(256,256,256,0.5);
    }

        .login-form .footer .register:hover {
            color: red;
        }

        .login-form .footer .register:focus {
            position: relative;
            bottom: -1px;
        }

#login_title {
    font-family: 'BrawlerRegular', Georgia, serif;
    font-size: 25px;
    text-align: center;
    margin-left: -5px;
}

#login_title2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    text-align: center;
}

.invalid{
    font-family: Arial, Helvetica, sans-serif;
    color: red;
    font-size: 14px;
    padding-left: 40px;
}

.loginhelp {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
        padding-left: 50px;
}

    .loginhelp a:link {
        color: black;
        background-color: transparent;
        text-decoration: none;
    }

    .loginhelp a:visited {
        color: black;
        background-color: transparent;
        text-decoration: none;
    }

    .loginhelp a:hover {
        color: red;
        background-color: transparent;
        text-decoration: underline;
    }

    .loginhelp a:active {
        color: red;
        background-color: transparent;
        text-decoration: underline;
    }