/*
		File: 	login.css
		Auth:	Creativeink Design Group | web@creativeink.ca
		~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/*---------------------------------------------------------------------------- 
 FORM
-----------------------------------------------------------------------------*/
.form-login {	
    /* Size and position */
	max-width:600px;
    width: 100%; /* WIDTH */
    padding: 0px; /* PADDING */
    position: relative;
    margin: 0px;
    overflow: hidden;

    /* Styles */
    background: #FFFFFF; /* BG COLOR */ 
    border-radius: 0.4em;
    border: 1px solid #191919;
    box-shadow: 
        inset 0 0 2px 1px rgba(255,255,255,0.08), 
        0 16px 10px -8px rgba(0, 0, 0, 0.6);
}

.form-login label {
    /* Styles */
    color: #000000; /* FONT COLOR */
    font-size: 20px; /* FONT SIZE */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 0 #000000;
    text-indent: 10px;
    font-weight: bold;
    cursor:default;
}

.form-login input[type=text],
.form-login input[type=password] {
    /* Size and position */
    padding: 8px 8px; /* INPUT PADDING */
    font-size: 14px;

    /* Styles */ 
    border: 1px solid #000;
    box-shadow: 0 1px 0 rgba(255,255,255,0.1);
    border-radius: 3px;

    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: #000000;

}

.form-login input[type=text]:hover,
.form-login input[type=password]:hover,
.form-login label:hover ~ input[type=text],
.form-login label:hover ~ input[type=password] {
    background: #D31F27;
}

.form-login input[type=text]:focus, 
.form-login input[type=password]:focus {
    box-shadow: inset 0 0 2px #000;
    background: #FFFFFF;
    border-color: #D31F27;
    outline: none; /* Remove Chrome outline */
}


.form-login label[for=remember] {
    width: auto;
    float: none;
    display: inline-block;
    text-transform: capitalize;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0px;
    text-indent: 2px;
}

.form-login input[type=checkbox] {
    vertical-align: middle;
}

.form-login input[type=submit], .form-back-btn {
    /* Width and position */
    padding: 12px 35px;
  
    /* Styles */
    border: 1px solid #000000; /* Fallback */
    border-radius: 5px;
    background: #A9001D; /* SUBMIT BACKGROUND COLOR */
    background-color: #A9001D; /* SUBMIT BACKGROUND COLOR */
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
	text-transform:uppercase;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
	filter: alpha(opacity=100); opacity:1;
}

.form-login input[type=submit]:hover {
	background-color:#df151e;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}