.card{

    margin-top: 170px;
}

.form-group-input{

    margin: 30px 0 30px 0;
}

.form-group-button{

    margin-top:60px;
    margin-bottom: 0;
}
body {
	width: 100wh;
	height: 90vh;
	background: linear-gradient(-45deg, rgb(79, 179, 216), rgb(57, 230, 189));
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s 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%
	}
}