body{
	display: flex;
	flex-direction: column;
	gap: 120px
}header{
	margin-top: 120px;
	height: 100%;
	align-items: center;
	justify-content: center;
}form{
	scale: 1.5;
	width: 100%;
	margin: 48px 0;
	grid-template-rows: 1fr 1fr 1fr 2fr 1fr 2fr;
}

.form-container{
	width: 320px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}
main{
	display: flex;
	gap: 60px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
select{
	outline: none;
	background-color: var(--none);
	color: white;
	font-family: var(--font);
	border: solid 1px var(--brand);
	border-radius: 2px;
	height: 24px;
	padding: 4px;
	line-height: 0.8;
	height: 19px;
	flex: 1;
	box-sizing: content-box;
}option{
	background-color: var(--brand-dark);
}input[type='file']{
	display: none;
}
label.attach{
	text-align:center;
	cursor:pointer;
}label.attach > span{
	text-decoration: underline;
}div.attach{
	justify-content: center;
}

.alert{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
}

@media (max-width: 800px) {
	form{
		scale: 1;
	}
	.test{width: 100%;text-align:center;}
}