body {
	/* background: linear-gradient(-45deg, #4a40a1, #010041);
	background-size: 600% 600%;
	animation: gradient 2s ease infinite; */
	height: 100vh;
    font-family: 'Gruppo';
    font-size: 20px;
    background-color: black;
    overflow-y: scroll;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.form {
    text-align: center;
}

.textbox {
    width: 90%;
    height: 7vh;
    border-radius: 30px;
    background-color: white;
    border-color: #0d6efd;
    border-width: 3px;
    text-align: center;
    font-size: 30px;
}

.form-label {
    color: white;
}

.btn {
    border-radius: 30px;
    font-size: 22px;
    width: 80%;
    height: 7vh;
}

.formdiv {
    background-color: rgba(255,255,255,0.3);
    margin: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 20px;
    border-style: dashed;
    border-color: rgba(255,255,255,0.05);
    border-width: 5px;
}

.spacer {
    height: 50px;
}

.video-background {
    z-index: -1;
    object-fit: cover;
    width: 110vw;
    height: 110vh;
    top: -5vh;
    left: -5vw;
    position: fixed;
    overflow: hidden;
    filter: opacity(0.4);
}