html, body {
    background: #f9f9f9;
  height:100%;
}
body {
  display:flex;
  align-items:center;
}





.labelIconLeft {
    float: left;
    margin: -50px 8px 0 10px;
    position: relative;
    z-index: 2;
    color: #00af48;
}

.fixLoginInputs {
padding-left: 40px !important;
}



form input {
    background: #e8f5e9 !important;
    border-color: #cbedce !important;
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
    padding:1em;
}

form input:hover,
form input:active,
form input:focus {
    border-color: #00c853 !important;
}





/* Pure CSS3 Gradient Background Animation 
https://codepen.io/P1N2O/pen/pyBNzX   */

body {
	width: 100wh;
	height: 100vh;
	color: #fff;
	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 10s ease infinite;
	-moz-animation: Gradient 10s ease infinite;
	animation: Gradient 10s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}