html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: #333;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 14px;
	word-break: break-word;
}
body.rtl {
	direction: rtl;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

.gray {
	color: gray;
}

.ltr {
	direction: ltr;
}

.pointer {
	cursor: pointer;
}

#page-login .box {
	max-width: 400px;
	margin: 3em auto 0;
}
#page-login h1 {
	text-align: center;
}


