* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.loginPage{
	background: linear-gradient(-45deg, #ee7752, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

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

.registrationPage{
    background-color: #f5f5f5;
}

.signupPage{
    display: flex;
    height: 100vh;
    
}

.form-signup {
    max-width: 330px;
    padding: 15px;
}

@keyframes animate {
    0% {
        transform: scale(0) translateY(0);
    }

    100% {
        transform: scale(1.3) translateY(-100px);
    }
}

.canva {
	background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(http://media.futurebutterflies.net/houston-besomeone.jpg)no-repeat;
	height: 100vh;
	width: 100%;
	
}

.offcanvas-title{
	color: white;
	font-size: 25px
}
.navbar-nav a{
	color: white;
	transition: all 0.5s;
}

.navbar-nav a:hover{
	color: rgb(168, 37, 37);
}


h3{
    padding-top: 1rem;
}

.table-responsive {
    max-height: 400px;
}

#reportrange {
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 5px 10px;
}
