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

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

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

input:focus {
	outline: 0;
}

img {
	max-width: 100%;	
}

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

.row-login label {
	width: 100%;
	color: #BFBFBF;
	font-size: 16px;
}

.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;
	transition: all 0.50s ease-in-out;
}

.row-login.white a:hover {
	color: #38B5E6;
}
	
.row-login .button input {
	background-color:#38B5E6; 
	border-radius: 50px;
	border: none;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	padding: 10px 50px 10px 50px;
	width: 100%;
	transition: all 0.2s ease-in-out;
	height: 46px;
	margin-top: 30px;
}

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

.row-login.white {
	font-size: 12px;
	color: #747574;	
	text-align: center;
	padding: 20px 0 0 0;
	margin-top: 60px;
}

.row-login.white a {
	text-decoration: none;
	color: #747574;
	transition: all 0.2s ease-in-out;	
}

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

.row-login #logo {
	margin: 0 auto;
	text-align: center;
	width: 150px;
	height: 93px;
}

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

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

input:focus { 
	outline: none; 
}
  
label {
	color:#999; 
	font-size: 18px;
	font-weight: 400;
	position: absolute;
	pointer-events: none;
	top: 10px;
	transition: 0.2s ease all; 
}

input.is-filled ~ label,
input:focus ~ label {
	top: -10px;
	font-size: 14px;
	color:#2EB4E9;
}

#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;
	}

}
	
	
	
	
