@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #fff;
  font-family: Arial;
  font-size: 12px;
  overflow: hidden;
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.body {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background-image: url(/img/logolabotecc.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	-webkit-filter: blur(5px);
	z-index: 0;
}

.grad {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65)));
	z-index: 1;
	opacity: 1;
}
.header {
  position: absolute;
  top: 20px; /* Modifica el valor para ajustar la posición vertical */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}


.header div {
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 5vw; /* Tamaño de fuente responsivo */
	font-weight: 200;
}

.header div span {
	color: #5379fa !important;
}

.login {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: auto;
	width: 80%;
	max-width: 350px;
	padding: 10px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.login input[type=email],
.login input[type=password],
.login button[type=submit] {
  /* Estilos existentes para el botón */
  width: 100%;
  max-width: 250px;
  height: 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 8px;
  cursor: pointer;
  line-height: 0px; /* Centra verticalmente el texto dentro del botón */
  transition: background-color 0.3s; /* Transición suave del color de fondo */
}

.login button[type=submit]:active {
  background-color: #5379fa; /* Cambia el color al ser presionado */
}

.login button[type=submit]:hover {
	background-color: #75aaff; /* Cambia el color al pasar el cursor */
}
.login input[type=button]:active {
	opacity: 0.6;
}

/* Placeholder del input */
::-webkit-input-placeholder {
	color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder {
	color: rgba(255,255,255,0.6);
}
