/* EMPLOYEE LOGIN */ 
.form-style-10 {
    width:450px;
    padding:20px;
    margin:10px auto 20px auto;
    background: #996633;
    border-radius: 5px;
    -webkit-border-radius:10px;
    -moz-border-radius: 10px;
	box-shadow: inset 0px 0px 15px #4A2602;
    -moz-box-shadow: inset 0px 0px 15px #4A2602;
    -webkit-box-shadow: inset 0px 0px 15px #4A2602;
}
.form-style-10 .inner-wrap {
    padding: 30px;
    background: #d2c2b0;
    border-radius: 6px;
    margin-bottom: 15px;
}
.form-style-10 label {
    display: block;
    font: 14px Calibri, Arial, sans-serif;
    color: #000000;
    margin-bottom: 10px;
}
.form-style-10 input[type="text"],
.form-style-10 input[type="password"] {
    display: block;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%; 
    padding: 8px;
    border-radius: 6px;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    border: 2px solid #fff;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
    -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
}
.form-style-10 input[type="submit"] {
    background: #FFFFFF;
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    color: #000;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.18);
    font: normal 30px Calibri, serif;
    -moz-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    -webkit-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
    border: 1px solid #000000;
    font-size: 15px;
}
.form-style-10 input[type="submit"]:hover {
    background: #994433;
    color: #FFF;
    -moz-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.28);
    -webkit-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.28);
    box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.28);
}
/* POPUP STUFF */
#popup {
	display: none;
}
#popup-bg{
	position:fixed;
	top: 0;
	left: 0;
	background: black;
	width:100%;
	height:100%;
	opacity: .5;
}
#popup-fg{
	max-width: 20em;
	background: #ddd;
	margin: 0 auto;
	padding: 2em;
	z-index: 1;
	position: absolute;
	left: 0;
	right: 0;
	border-radius: 5px;
}
#login {
	float: right;
	margin: -4em 4em;
}
#popup {
	input, label {
	display: block;
	width: 100%;
	}
	label {
	margin-top: 1em;
	}
	.actions {
	text-align: center;
	margin-top: 1em;
	}
}

#realnameidclick:hover {
	cursor: help;
}
#realnameid, #realnameidclick {
	font: italic normal bold Tahoma, Geneva, sans-serif !important;
	color: rgba(0,9,109,1) !important;
	-o-text-overflow: clip !important;
	text-overflow: clip !important;
	letter-spacing: -1px !important;
	text-shadow: 0 0 2px rgba(252,2,2,1) !important;
}

@media only screen and (max-device-width: 640px) 
{
	.form-style-10 {
		width:90%; /* */
		padding:20px;
		margin:10px auto 20px auto;
		border-radius: 10px;
	}
	.form-style-10 .inner-wrap {
		padding: 30px;
		margin-bottom: 15px;
	}
	.form-style-10 label {
		width:90%;
		text-align:left;
		font: 40px Calibri, Arial, sans-serif;
		margin: 10px auto 10px auto;
		display: block;
	}
	
	.form-style-10 input[type="text"],
	.form-style-10 input[type="password"] {
		width: 90%;
		height: 100px;
		border-radius: 6px;
		font: 35px Calibri, Arial, sans-serif;
		border: 4px solid #FFFFFF;
		margin: 15px auto 15px auto;
		display: block;
	}
	.form-style-10 input[type="submit"] {
		background: #FFFFFF;
		width: 75%;
		height: 80px;
		/* padding: 10px 15px 10px 15px; */
		font: 35px Calibri, sans-serif;
		border: 3px solid #000000;
		margin: 20px auto 20px auto;
		display:block;
	}
	#realnameidclick:hover {
		cursor: help;
	}
	#realnameid, #realnameidclick {
		font: italic normal bold Tahoma, Geneva, sans-serif !important;
		color: rgba(0,9,109,1) !important;
		-o-text-overflow: clip !important;
		text-overflow: clip !important;
		letter-spacing: -1px !important;
		text-shadow: 0 0 1px rgba(252,2,2,1) !important;
		}	
}