@font-face {
	font-family: 'Lato';
	src: url("../fonts/Lato-Light.eot");
	src: local('â˜ºÂ˜'), url("../fonts/Lato-Light.woff") format("woff"),
		url("../fonts/Lato-Light.ttf") format("truetype"),
		url("../fonts/Lato-Light.eot?#iefix")format("embedded-opentype");
	font-weight: 300;
}

@font-face {
	font-family: 'Lato';
	src: url("../fonts/Lato-Regular.eot");
	src: local('â˜ºÂ˜'), url("../fonts/Lato-Regular.woff") format("woff"),
		url("../fonts/Lato-Regular.ttf") format("truetype"),
		url("../fonts/Lato-Regular.eot?#iefix")format("embedded-opentype");
	font-weight: 400;
}

@font-face {
	font-family: 'Lato';
	src: url("../fonts/Lato-Bold.eot");
	src: local('â˜ºÂ˜'), url("../fonts/Lato-Bold.woff") format("woff"),
		url("../fonts/Lato-Bold.ttf") format("truetype"),
		url("../fonts/Lato-Bold.eot?#iefix")format("embedded-opentype");
	font-weight: 800;
}

@font-face {
	font-family: 'RomulC';
	src: url("../fonts/RomulC.eot");
	src: local('â˜ºÂ˜'), url("../fonts/RomulC.woff") format("woff"),
		url("../fonts/RomulC.ttf") format("truetype"),
		url("../fonts/RomulC.eot?#iefix")format("embedded-opentype");
	font-weight: normal;
}

/* CSS Reset */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
em,
img,
u,
i,
ul,
li,
footer,
header,
video,
p {
	margin: 0;
	padding: 0;
	border: 0;
}

/* HTML5 display-role reset for older browsers */
ul {
	list-style: none;
}

/* End of CSS Reset */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	height: 100%;
	width: 100%;
	overflow-x: hidden;
}

 video {
     position: fixed;
     min-width: 100%;
     min-height: 100%;
     margin: 0 auto;
     top: 50%;
     left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
    z-index: -999;
 }
body {
	width: 100%;
	height: 100%;
	font-family: 'Lato', sans-serif;
	background: #040404 url('../img/bg-body.jpg') top center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

img {
	border: none;
}

input,
select {
	outline: none;
	vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'RomulC';
	margin: 0;
	margin-bottom: 10px;
	line-height: 1;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

.gr {
	color: #e56300;
}

a {
	text-decoration: none;
	color: #fff;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

a:hover,
a.active {
	color: black;
}

input,
textarea,
select {
	background-color: #000;
	color: #aaa;
	font-size: 24px;
	font-weight: 800;
	font-family: "Lato";
	width: 100%;
	border-radius: 10px;
	text-align: left;
	border: none;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	margin-bottom: 10px;
	padding: 17px;
	text-align: center;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
	box-shadow: 0 0 10px rgba(229, 99, 0, 0.8);
}


input.login,
input.btn {
	display: inline-block;
	color: #fff;
	width: 430px;
	background: #e56300;
	font-size: 30px;
	border: 3px solid #e56300;
	border-radius: 10px;
	font-family: 'RomulC';
	font-weight: bold;
	cursor: pointer;
}

input.btn {
	width: 100%;
}

input.login:hover,
input.btn:hover {
	border: 3px solid #e56300;
	background: rgba(0, 0, 0, 0.3);
	box-shadow: none;
	letter-spacing: 3px;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.container {
	position: relative;
	width: 1240px;
	margin: auto;
}

.logo {
	display: block;
	margin: 0 auto;
	width: 224px;
	height: 223px;
	background: url('../img/logo.png') center center no-repeat;
	background-size: contain;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.logo:hover {
	transform: scale(0.95);
}

.logo a {
	display: block;
	width: 100%;
	height: 100%;
}

/*===Login page styles===*/
.container.login {
	width: 620px;
	text-align: center;
}

.container.login .logo {
	margin: 0px auto;
}

.container.login .entercp {
	margin: 0px 0;
}

footer.login {
	position: absolute;
	bottom: 50px;
	width: 620px;
	left: 50%;
	margin-left: -310px;
	text-align: center;
}

footer.login a {
	display: block;
	font-size: 18px;
	text-transform: uppercase;
	color: #e56300;
	font-weight: bold;
	text-decoration: underline;
	margin-bottom: 30px;
}

footer.login a:hover {
	color: #fff;
	text-decoration: none;
}

footer a.lang,
a.lang {
	display: inline-block;
	margin: 0 10px;
	opacity: 0.5;
	text-decoration: none;
}

a.lang.active,
a.lang:hover {
	opacity: 1;
}

server {
	outline: none;
	vertical-align: middle;
}

server {
	background-color: #000;
	color: #aaa;
	font-weight: 800;
	font-family: "Lato";
	width: 100%;
	border-radius: 10px;
	border: none;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	margin-bottom: 10px;
	padding: 17px;
	text-align: center;
}

server:hover,
server:focus {
	box-shadow: 0 0 10px rgba(229, 99, 0, 0.8);
}

server.login {
	display: inline-block;
	color: #fff;
	width: 430px;
	background: #e56300;
	font-size: 18px;
	border: 3px solid #e56300;
	border-radius: 10px;
	font-family: 'RomulC';
	font-weight: bold;
	cursor: pointer;
}

server.login:hover {
	border: 3px solid #e56300;
	background: rgba(0, 0, 0, 0.3);
	box-shadow: none;
	letter-spacing: 3px;
}

server {
	margin: 0;
	height: 40px;
	width: 80%;
}

server {
	height: auto;
}

.by {

	font-size: 12px;
	color: dodgerblue;
	text-shadow: -1px -1px 1px #000000, 1px 1px 1px #000000, -1px 1px 1px #000000, 1px -1px 1px #000000;
	font-weight: bold;
	box-sizing: border-box;
}

.creditos {
	margin-top: 12%;
	text-align-last: center;
	color: #e56300;
	text-shadow: -1px -1px 1px #000000, 1px 1px 1px #000000, -1px 1px 1px #000000, 1px -1px 1px #000000;
	font-size: 12px;
	font-weight: bold;
	box-sizing: border-box;
}

.login-t a {
	float: left;
	width: 74px;
	height: 22px;
}

.login-t {
	position: absolute;
	background: #e56300;
	margin-left: 15%;
	margin-top: 5px;
	width: 80px;

}

.login-t span {
	display: block;
	font-size: 16px;
	vertical-align: middle;
	text-align-last: center;
}

div.login-t:hover {
	border: 3px solid #e56300;
	background: rgba(0, 0, 0, 0.3);
	box-shadow: none;
	letter-spacing: 3px;	
}

div.login-t {
	border: 3px solid #e56300;
	border-radius: 10px;
	cursor: pointer;	
}