body {
	padding: 0;
	margin: 0;
	font-family: 'Roboto', sans-serif;
}

.background {
	background-image: url(../images/background.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	height: 100%;
	width: 100%;
}

.login-wrapper {
	width: 320px;
	background-color: #fff;
	padding: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

input:focus {
	outline: 0;
}

img {
	max-width: 100%;	
}

/* Login pagina */
.row-login {
	width: 100%;	
}

.row-login label {
	width: 100%;
}

.row-login label:after {
	clear: both;	
}

.row-login label input[type="text"] {
	text-transform: lowercase;
}

.row-login label input[type="password"] {
	width: 100%;	
	border: solid 1px #acacac;
	border-radius: 3px;
	padding: 15px 10px 15px 10px;
	font-size: 16px;
	color: #666;
	box-sizing: border-box;
	margin: 3px 0 20px 0;
}
	
.row-login .button input {
	box-sizing: border-box;
	display: block;
	background-color:#07243E;
	border: none;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	padding: 10px 50px 10px 50px;
	width: 100%;
	transition: background-color 0.2s linear;
	height: 46px;
	margin-top: 20px;
}

.row-login .button input:hover {
	cursor: pointer;	
	background-color: #19818D;
}

.row-login > div {
	max-width: 550px;	
	width: 100%;
	margin: 0 auto;
}

.row-login .logo {
	padding-bottom: 75px;
}

.row-login #logo {
	display: block;
	margin: 0 auto;
	text-align: center;
	width: 200px;
}

.group { 
	position: relative; 
	margin-bottom: 20px; 
}

.login-wrapper input {
	box-sizing: border-box;
	font-size: 16px;
	padding: 10px 10px 10px 5px;
	width: 100%;
	border: none;
	border: 1px solid #CBCBCB;
}

input:focus { 
	outline: none; 
}
  
label {
	font-size: 18px;
	font-weight: 400;
	position: absolute;
	pointer-events: none;
	left: 0px;
	transition: 0.2s linear; 
	transition-property: top, font-size, color;
	top: -22px;
	font-size: 14px;
	color:#07243E;
}


#test-text-header,
#domain-text {
	text-align: center;
	display: block;
	position: relative;
}

#test-text-header,
#domain-text {
	color: #3d1152;
	margin: 5px;
}

#test-text-header  {
	font-size: 14px;
}

#domain-text {
	font-size: 20px;
	font-weight: 600;
}

#domain-text {
	margin-bottom: 40px;
}

/* A */
@media (max-device-width:1024px) and (orientation:landscape) 
{
}

/* B */
@media (max-device-width:1023px) and (orientation:portrait),(max-device-width:767px) and (orientation:landscape) 
{
}

/* C */
@media (max-width:767px),(max-device-width:767px) and (orientation:portrait),(max-device-width:499px) and (orientation:landscape) 
{	
	.row-login #logo {
		width: 50%;	
		padding: 10px;
	}

	.login-wrapper {
		top: 66%;
	}

	.background {
		position: unset;
	}
}

/* D */
@media (max-width:499px),(max-device-width:499px) and (orientation:portrait) 
{
	.login-wrapper {
		width: 95%;
		top: 50%;
	}

	.row-login .login-message {
		font-size: 14px;
	}

	.row-login .full .button input {
		width: 100%;	
	}

	.row-login .full .remember {
		width: 100%;	
		margin-top: 20px;
		text-align-last: center;
	}
	
	.background {
		position: absolute;
	}
}