/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.FlexForm {
    display: flex;
    flex-flow: column wrap;
	padding: 2.5%;
}

.CenterForm {
    background-color: white;
    padding: 2vh;
	padding-left: 0vw;
	margin: 5vh;
	border: double black 1vw;
	height: 85vh;
	margin-bottom: 0%;
	width: 25vw;
}

h1 {
	font-family: Kanit-Medium;
	font-size: 5vh;
	text-align: center;
	margin-top: -1vh;
	margin-bottom: 1vh;
}

@font-face {
	font-family: "Kanit-Black";
	src:url(fonts/Kanit-Black.ttf)
}
@font-face {
	font-family: "Kanit-Medium";
	src:url(fonts/Kanit-Medium.ttf)
}
body {
	background-color: whitesmoke;
}

.SubmitButton {
	display: flex;
	align-items: center;
	flex-flow: column wrap;
	width: 70%;
	margin-top: 50px;
	font-size: 0.75vw;
	background-color: whitesmoke;
	border: black 1% solid;
}

label {
	font-family: sans-serif;
	font-size: 1.75vh;
	text-align: left;
	margin-top: 2.5vh;
	margin-bottom: 0.25vh;
}

textarea {
	height: 15vh;
	width: 100%;
}

input {
	width: 100%;
}

.RedAstrisk::after {
	content: "*";
	color: red;
}