﻿* {
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
	min-height: 100%;
}

#container {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.content {
	flex: 1 0 auto;
	/*===*/
	background-position: center bottom;
}

footer {
	flex: 0 0 auto;
	/*===*/
	color: #666;
	background: #e6e6e6;
	font-size: 13px;
	box-shadow: 0 -2px 2px 0 rgba(0,0,0,0.2);
	padding: 10px 0;
}

footer .s_txt {
	width: 100%;
	text-align: right;
	padding: 0 20px;
	box-sizing: border-box;
}

footer .s_txt b {
	float: left;
}

/*================================================*/
.login_box {
	margin: 10% 10px;
}

.login_box > div {
	max-width: 500px;
	margin: 0 auto;
	/*background: rgba(255,255,255,1);*/
	border-radius: 10px;
	padding: 25px 25px 35px 25px;
	/*box-shadow: 0 0 10px 0 rgba(0,0,0,0.05),0 4px 4px 0 rgba(0,0,0,0.05),0 7px 7px 0 rgba(0,0,0,0.05);*/
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}

.login_box .l_logo {	
	max-width: 90%;
	vertical-align: middle;
	margin: 0 auto;
	border-radius: 5px;
	display: block;
}

.login_box p {
	width: 100%;
}

.login_box .title {
	font-size: 20px;
	margin: 0 0 20px 0;
	text-align: center;
	color: #83624e;
	font-weight: bold;
}

.login_box .input_box {
	margin: 0 0 -1px 0;
	display: flex;
	flex-flow: row;
}

.login_box .input_box b {
	background: #dddddd;
	height: 38px;
	vertical-align: top;
	width: 40px;
	text-align: center;
	border: 1px solid #cbcbcb;
	border-right: none;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-items: center;
}

.login_box .input_box.A b {
	border-bottom-left-radius: 0;
}

.login_box .input_box.B b {
	border-top-left-radius: 0;
}

.login_box .input_box b i {
	color: #606060;
	font-size: 16px;
}

.login_box .input_box input {
	border: 1px solid #cbcbcb;
	height: 40px;
	box-sizing: border-box;
	padding: 0 10px;
	font-family: "Century Gothic","微軟正黑體",'Arial Black',Gadget,sans-serif;
	border-left: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	width: calc(100% - 42px);
}

.login_box .input_box.A input {
	border-bottom-right-radius: 0;
}

.login_box .input_box.B input {
	border-top-right-radius: 0;
}

.login_box input:focus {
	outline: none;
}

.login_box .go {
	text-align: center;
}

.login_box .go input {
	width: 150px;
	height: 50px;
	display: inline-block;
	line-height: 40px;
	background: #9ac715;
    font-weight: bold;
    color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.15s ease-out;
	margin: 25px 0 0 0;
	font-family: "Century Gothic","微軟正黑體",'Arial Black',Gadget,sans-serif;
	font-size: 19px;
}

.login_box input {
	vertical-align: middle;
	border: 1px solid #CCC;
	padding: 0 10px;
	box-sizing: border-box;
	height: 30px;
	letter-spacing: 1px;
	border-radius: 3px;
	font-family: "Century Gothic","微軟正黑體",'Arial Black', Gadget, sans-serif;
	box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.1);
}

.login_box .go input:hover {
	background: #00adc9;
}

.login_box p {
	position: relative;
}

.login_box p label {
	position: absolute;
	left: 50px;
	top: 9px;
}

.login_box .table{
	display:flex;
	align-items:center;
	padding:15px 0 0 0;	
	justify-content:flex-end;
	width:100%;
}

.login_box .table p{
	margin:0 0 0 10px;
	width:auto;
}

.login_box .table input{
	margin:0 -5px 0 0;
}