* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
}

.center-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
}

.form {

}

.form-section {
	
}

.form-section:not(:last-child) {
	margin-bottom: 20px;
}

.form-section label {
	font-weight: bold;
	display: block;
}

.form-section .form-submit-button {
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid black;
	cursor: pointer;
	color: black;
	background-color: white;
	transition: color 0.15s, background-color 0.15s;
}

.form-section .form-submit-button:hover {
	color: white;
	background-color: black;
}

input[type="text"], input[type="password"], 
input[type="email"], textarea {
	padding: 5px 10px;
}