@charset "utf-8";
* {
	font-family: Bahnschrift;
	color: var(--secondary_clr)
	
}

:root {
	--primary_clr : #dccc9c;
	--secondary_clr: #0d1817;
}

body {
	background-image: url("FinalAssets/Background.png")
}

label {
	display: block;
	font-size: 20px;
}

.form-container{
	align-content: center;
	width: 40%;
	margin: 100px auto;
	padding: 20px 40px;
	background: var(--primary_clr);
	border-radius: 30px;
	
}

.form-container h2 {
	font-family: Anton SC;
	text-align: center;
	font-size: 60px;
	line-height: 100%;
}

.form-group{
	font-size: 2vw;
	justify-content: space-between;
	margin-bottom: 20px;
}

.form-group input,
.form-group select{
	color: aliceblue;
	min-width: 90%;
	border-radius: 10px;
	background: hsla(177,29%,13%,1.00);
	padding: 15px
}
.form-group option {
	color: aliceblue;
}

button {
	display: block;
	font-size: 30px;
	font-family: Anton SC;
	color: var(--primary_clr);
	border-radius: 10px;
	background: var(--secondary_clr);
	width: 100%;
	padding: 10px;
	margin-top: 50px;
}

button:hover{
	background: hsla(177,29%,13%,1.00);
}
