/*
    Document   : login
    Created on : Aug 21, 2012, 12:50:57 PM
    Author     : nekohconeco
    Description: Style sheet for login screen
*/

body {
    background: white; /* Old browsers
    background: -webkit-linear-gradient(top, #DCDCDC, #D1D2D4);
    background: -moz-linear-gradient(top, #DCDCDC, #D1D2D4);
    background: -o-linear-gradient(top, #DCDCDC, #D1D2D4);
    background: -ms-linear-gradient(top, #DCDCDC, #D1D2D4);
    background: linear-gradient(top, #DCDCDC, #D1D2D4);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#DCDCDC', endColorstr='#D1D2D4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.login-panel {
	border: 0;

    background-color: #1e5e77;
    background-image: -moz-linear-gradient(top, #1e5e77, #052F3F);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1e5e77), to(#052F3F));
    background-image: -webkit-linear-gradient(top, #1e5e77, #052F3F);
    background-image: -o-linear-gradient(top, #1e5e77, #052F3F);
    background-image: linear-gradient(to bottom, #1e5e77, #052F3F);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e5e77', endColorstr='#052F3F', GradientType=0);

    -webkit-border-radius:13px;
    -moz-border-radius:13px;
    border-radius:13px;
	overflow: visible;
}

.login-title {
    margin-top: 3%;
	margin-bottom: 0;
}

.login-title h1 {
    text-align: center;
    text-shadow: -1px 2px white;
}

.login-panel .hint, .remember-me {
	color: white;
}

.login-panel input[type=text], .login-panel input[type=password] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 0;
    height: 40px;
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
    margin: 10px auto;
}