/*
*	RESET
*/
*{
	box-sizing: border-box;
	margin: 0px;
	outline: none;
	padding: 0;
}

*:after,
*:before {
	box-sizing: border-box;
}

/*
*	GLOBAL
*/
html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
}

body {
	/*background-color: #f3f3f3;*/
	/*color: rgb(165,165,165);*/
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-weight: 400;
}

ul li{ padding:10px; }

a.close {
	background-color: rgb(204,204,204);
	border-radius: 50%;
	color: rgb(255,255,255);
	display: block;
	font-family: 'Varela Round', sans-serif;
	font-size: .8em;
	padding: .2em .5em;
	position: absolute;
	top: 1.25rem;
	transition: all 400ms ease;
	right: 1.25rem;
}

	a.close:hover {
		background-color: #ff5e43;
		cursor: pointer;
	}

/*
*	LOG-IN BOX
*/
div.overlay {
	background-color: rgba(0,0,0,.25);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%; z-index:999999;
}

	div.overlay > div.login-wrapper {
		align-self: center;
		background-color: rgba(0,0,0,.25);
		border-radius: 2px;
		padding: 6px;
		width: 450px;
	}
	
		div.overlay > div.login-wrapper > div.login-content {
			background-color: rgb(255,255,255);
			border-radius: 10px;
			padding: 24px;	
			position: relative;
		}

			div.overlay > div.login-wrapper > div.login-content > h3 {
				color: #026ca8;
				font-family: 'Varela Round', sans-serif;
				font-size: 1.8em;
				margin: 0 0 1.25em;
				padding: 0;
			}
/*
*	FORM
*/
.overlay form label {
	color: #024f7a;
	display: block;
	font-family: 'Varela Round', sans-serif;
	font-size: 1.25em;
	margin: .75em 0;
}

	.overlay form input[type="text"],
	.overlay form input[type="email"],
	.overlay form input[type="number"],
	.overlay form input[type="search"],
	.overlay form input[type="password"],
	.overlay form textarea {
		background-color: rgb(255,255,255);
		border: 1px solid rgb( 186, 186, 186 );
		border-radius: 1px;
		box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
		display: block;
		font-size: .65em;
		margin: 6px 0 12px 0;
		padding: .8em .55em;	
		text-shadow: 0 1px 1px rgba(255, 255, 255, 1);
		transition: all 400ms ease;
		width: 100%;
	}
	
	.overlay form input[type="text"]:focus,
	.overlay form input[type="email"]:focus,
	.overlay form input[type="number"]:focus,
	.overlay form input[type="search"]:focus,
	.overlay form input[type="password"]:focus,
	.overlay form textarea:focus,
	.overlay form select:focus { 
		border-color: #4195fc;
		box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #4195fc;
	}
	
		.overlay form input[type="text"]:invalid:focus,
		.overlay form input[type="email"]:invalid:focus,
		.overlay form input[type="number"]:invalid:focus,
		.overlay form input[type="search"]:invalid:focus,
		.overlay form input[type="password"]:invalid:focus,
		.overlay form textarea:invalid:focus,
		.overlay form select:invalid:focus { 
			border-color: rgb(248,66,66);
			box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgb(248,66,66);
		}
	
.overlay form button {
	background-color: #50c1e9;
	border: 1px solid rgba(0,0,0,.1);
	color: rgb(255,255,255);
	font-family: 'Varela Round', sans-serif;
	font-size: .85em;
	padding: .55em .9em;
	transition: all 400ms ease;	
}

	.overlay form button:hover {
		background-color: #1bc5b3;
		cursor: pointer;
	}

/*Thats all. I hope you enjoyed it.
Thanks :)*/
/***************************************************************/
/*************** Footer Bar Style ******************************/
/***************************************************************/
.footer-bar
{
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    background: #111;
    border-top: 1px solid #E62600;
    position: fixed;
    bottom: 0;
    left: 0;
}
.footer-bar .article-wrapper{
    font-family: arial, sans-serif;
    font-size: 14px;
    color: #888;
    float: left;
    margin-left: 10%;
}
.footer-bar .article-link a, .footer-bar .article-link a:visited{
    text-decoration: none;
    color: #fff;
}
.site-link a, .site-link a:visited{
    color: #888;
    font-size: 14px;
    font-family: arial, sans-serif;
    float: right;
    margin-right: 10%;
    text-decoration: none;
}
.site-link a:hover{
    color: #E62600;
}

.login-content h3{text-align:center;}
.noidung{ width:100%; height:200px; resize:none;}