/*
Playcare

Primary color:		#0087DC;
Secondary color:	
*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

html
{
	scroll-behavior: smooth;
}

html,
body
{
	height: 100%;
	width: 100%;
}

body
{
	background: #aaa;
	color: #000;
	font-family: 'Open Sans', sans-serif;
}

/**********************************
***       GENERAL CLASSES       ***
**********************************/
.box
{
	background: #f0f0f0;
/*	background: linear-gradient(#f8f8f8, #e8e8e8); */
	border: 2px solid #fff;
	border-bottom: 2px solid #a0a0a0;
	border-right: 2px solid #a0a0a0;
	border-radius: 10px;
	padding: 15px;
	width: 90%;
}

/**********************************
***           LOGIN		***
**********************************/
.login section
{
	align-items: center;
	display: flex;
	justify-content: center;
	height: 100vh;
}

.login section .box
{
	min-width: 300px;
	max-width: 360px;
}

.login .msgbox
{
	margin: 0 0 20px 0;
}

.login h1
{
	font-size: 2em;
	margin-bottom: 26px;
	text-align: center;
	text-transform: uppercase;
}

.login h4
{
	color: #999;
	font-size: 1.3em;
	margin-bottom: 20px;
	text-align: center;
}

.login h4 span
{
	color: #0087DC;
}

.login p.advice
{
	background: #0087DC;
	border-radius: 5px;
	color: #fff;
	font-size: 0.9em;
	margin-bottom: 20px;
	padding: 10px;
}

.login input
{
	margin-bottom: 20px;
	width: 100%;
}

.login input[type="password"],
.login input[type="text"]
{
	padding: 10px;
}

.login .user_input input[type="password"],
.login .user_input input[type="text"]
{
	font-size: 1.4em;
	height: 36px;
	margin-right: 20px;
	padding: 0;
	text-align: center;
	width: 36px;
}

.login .user_input
{
	color: red;
	text-align: center;
}

.login .techinfo
{
	font-size: .8em;
	padding-top: 20px;
}

.login .rememberme
{
	background: url(../common/images/tick_off.gif) no-repeat center left;
	color: #666;
	display: block;
	font-size: 0.9em;
	height: 32px;
	line-height: 36px;
	margin-bottom: 20px;
	padding-left: 40px;
}

.login .rememberme:hover
{
	cursor: pointer;
}

.login #rememberme
{
	display: none;
	left: -9999px;
	position: absolute;
}

.login #rememberme:checked ~ .rememberme
{
	background: url(../common/images/tick_on.gif) no-repeat center left;
}

.login .cancel
{
	padding-top: 20px;
}

.login .cancel input
{
	font-size: 0.8em;
	margin-bottom: 10px;
	padding: 5px;
}

.database_alert
{
	background: #FFF1E1 url(../files/1/alert32.png) no-repeat 10px 10px;
	border: 1px solid #ff8800;
	border-radius: 5px;
	margin: 20px auto;
	padding: 20px 20px 20px 60px;
}

.login #submit
{
	background-color: #0087DC;
	border-radius: 5px;
	color: #fff;
	text-transform: uppercase;
	width: 50%;

	transition: .3s;
	-webkit-transition: .3s;
}

.login #submit:hover
{
	box-shadow: 0 0 10px #444;
}

/**********************************
***            MEDIA            ***
**********************************/

/**    Min width    **/

/********** 420 **********/
@media screen and (min-width: 420px)
{

}