﻿/* CSS Document */
a { 
    text-decoration:none;
}

a:hover { 
    text-decoration: underline;
}

blockquote { 
    padding: 0 1em;
}

strong { 
    font-weight: bold;
}

.clear { 
    clear: both;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-size: medium;
	background-size: 100% auto, 100% auto, 100%;
	background-image: url("../images/bgd_pic.svg"), url("../images/login_bgd.svg"), linear-gradient(0deg, #ffffff, #eeffff);
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: center bottom, center bottom, center bottom;
}


/*------------------------------------login_web------------------------------------*/
.login_page {
	display: block;
	margin: 0 auto;
	padding: 4% 0.3em;
	max-width: 1280px;
	font-family: "Microsoft JhengHei",Verdana, Arial;
	text-shadow: none;
}

.sys_title {
	display: block;
	margin: 0;
	padding: 0.3em 0.5em 2em 0.5em;
	text-align: center;
	color: #0060ad;
}

.sys_logo {
	display: block;
	margin: 0;
	padding: 0 0.5em;
	text-align: center;
}

.sys_logo img {
	display: inline-block;
	margin: 0 0 1em 0;
	padding: 0;
	width: 360px;
	height: auto;
}

.sys_title h1 {
	font-weight: bold;
	font-size: 40pt;
}

.sys_title h1 span {
	display: block;
}

.login_box {
	display: block;
	max-width: 480px;
	border-radius: 1em;
	margin: 0 auto;
	padding: 1.5em;
	background: #fff;
	box-shadow: 3px 3px 8px 4px #999;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #17a2b8;
    border-color: #dee2e6 #dee2e6 #fff;
}

/*-----------------768_web-------------------*/

/*Styles for screen 768px and lower*/
@media screen and (max-width: 768px) {

	body {
		background-size: 200%, 200%, 100%;
		background-position: center bottom, right bottom, center bottom;
	}
	
	.login_page {
		padding-top: 1.5em;
	}

	.sys_title {
		padding-bottom: 1em;
	}
	
	.sys_title h1 {
		font-size: 32pt;
	}
	
	.sys_logo img {
		width: 60%;
		margin: 0 auto;
	}

}

/*-----------------420_web-------------------*/

/*Styles for screen 420px and lower*/
@media screen and (max-width: 420px) {
	
	.sys_title h1 {
		font-size: 20pt;
	}
	
	.login_box {
		border-radius: 0.5em;
		padding: 0.5em;
	}

}



