@charset "utf-8";
/* CSS Document */

@import "base.css";
@import "font.css";

html {
	width: 100%;
	height: 100%;
	background: url(../images/bg.jpg) center center no-repeat;
	background-size: cover;
}

body {
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
}

a {
	text-decoration: none;
}

.color-Red {
	color: #f00;
}

.login-wrapper {
	width: 460px;
	margin: 50px auto auto auto;
	text-align: center;
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: 0 0 10px #999999;
}

h1.login-title {
	margin: 30px 0;
    font-size: 30px;
    /*text-transform: uppercase;*/
}

span.input-title {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
    margin: 20px 0 5px 0;
}

.input-field-content {
	position: relative;
}

.input-field-content img {
	position: absolute;
	right: 10px;
	top: 10px;
	width: auto;
	height: 20px;
	padding-left: 10px;
}

input.input-field {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 0 40px 0 20px;
	box-sizing: border-box;
	margin-bottom: 5px;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
}

input::-webkit-input-placeholder {
	font-weight: normal !important;
	color: #dddddd;
	font-style: italic;
}

input[type="button"] {
	background-color: #006fb5;
	height: 40px;
	line-height: 40px;
	color: #ffffff;
	border-radius: 5px;
	border: 1px solid #006fb5;
	font-size: 16px;
	font-weight: normal;
	width: 100%;
	cursor: pointer;
	/*text-transform: uppercase;*/
	transition: all 0.3s;
	box-sizing: border-box;
	margin-top: 20px;
}

input[type="button"]:hover {
	border: 1px solid #006fb5;
	background: none;
	color: #006fb5;
}

form label.error {
	width: 100%;
	display: block;
	text-align: left;
	color: #f00;
	font-size: 14px;
	font-style: italic;
}

form input.input-field.error {
	border-color: #f00;
}

input.input-field[name="txt-username"]:after {
	width: 20px;
	height: 20px;
	background: url(../images/login-icon-username.svg) center center no-repeat;
}


/* ============================================================================== max-width: 480px ============================================================================== */



@media screen and (max-width: 480px) {

	.login-wrapper {
		width: 300px;
	}

	h1.login-title {
    	font-size: 20px;
	}

}