#loginPage{
	/*background: url('https://placehold.it/1920x980');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;*/
	background: #fff;
	height: 100vh;
	display: flex;
	align-items: center;
}
#loginPage .flexRow{
	display: flex;
}
#loginPage .flexRow .contentBx{
	margin: 0 auto;
}
#loginPage .flexRow .contentBx img{
	width: 290px;
	margin: 0 auto 30px;
	display: block;
}
#loginPage .flexRow .contentBx .title{
	font-size: 45px;
	text-align: center;
	text-transform: uppercase;
}
#loginPage .flexRow .contentBx form{
	text-align: center;
	font-size: 18px;
	background: rgba(255,255,255,.5);
	padding: 40px;
	position: relative;
	border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 0 15px;
	transition: .8s ease-in-out;
}
#loginPage .flexRow .contentBx form:hover{
	background: rgba(255,255,255,1);

}
#loginPage .flexRow .contentBx form label{
	margin-bottom: 0;
	margin-right: 5px;
}
#loginPage .flexRow .contentBx form input{
	border: none;
	border-bottom: 1px solid var(--verde);
    background: transparent;
}
#loginPage .flexRow .contentBx form input:focus,
#loginPage .flexRow .contentBx form input:active{
	outline: none;
}
#loginPage .flexRow .contentBx form .btnLoginCirculares{
	padding: 8px 40px;
	background: transparent;
	border: 1px solid var(--verde);
	display: table;
	margin: 30px auto 0;
	cursor: pointer;
	transition: .5s ease;
}
#loginPage .flexRow .contentBx form .btnLoginCirculares:hover{
	background: var(--negro);
	color: var(--verde);
	border: 1px solid var(--negro);
}
#loginPage .flexRow .contentBx form .message-form{
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: 100%;
}
#logOut, 
#goBack{
	position: fixed;
    right: 20px;
    z-index: 99999999;
}
#goBack{
	top: 10%;
	right: 10%;
}
#logOut a, 
#goBack a{
	text-align: center;
}
#logOut a i, 
#goBack a i{
	font-size: 40px;
    color: var(--verde);
    display: block;
}
#logOut a span,
#goBack a span{
	color: var(--negro);
	background: rgba(255,255,255,.6);
	padding: 3px 10px;
	margin-top: 5px;
	display: table;
}