/* Debug styles */
/* .header {
	border: solid black 1px;
} */
/* End debug styles */

@-ms-viewport {
	width: device-width;
}

* {
	padding: 0;
	margin: 0;
	color: black;
	box-sizing: border-box;
	word-wrap: break-word;
	font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Roboto, Arial, Noto Sans, sans-serif;
}

body {
	min-height: 100%;
}

h1 {
	font-weight: 700;
	font-size: 40px;
	line-height: 55px;
}

span {
	display: block;
	font-size: 20px;
	/* line-height: 24px; */
	color: black
}

a {
	text-decoration: none;
}

.root {
	background: #fafafa;
	width: 100%;
	min-height: 100vh;
}

.main-grid {
	display: grid;
	align-items: start;
	justify-content: center;
	grid-template-rows: min-content 1fr min-content;
	/* min-height: 100vh; */
	max-width: 100%;
}

.main-grid-item {
	/* display: flex;
	align-items: center;
	justify-content: center; */
	margin: auto;
}

.header {
	padding-top: 10px;
	padding-bottom: 20px;
	text-align: center;
}

.form-root {
	background-color: white;
	width: min(90vw, 450px);
	box-shadow: rgba(60, 66, 87, 0.12) 0px 7px 14px 0px, rgba(0, 0, 0, 0.12) 0px 3px 6px 0px;
	border-radius: 1rem;
}

.form-inner {
	padding: 1rem;
}

.form-title-wrapper {
	margin-bottom: 1rem;
}

.form-title {
	color: lightskyblue;
	font-size: clamp(.9rem, 5vw + .61rem, 2.5rem);
	font-weight: 600;
	text-align: center;
}

.form-input-fields {
	display: grid;
	grid-template-rows: 1fr 1fr 1fr;
	grid-gap: 1rem;
	align-items: center;
	/* margin-bottom: 1.5rem; */
}

.form-single-input-field-container {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.form-single-input-field {
	/* font-size: 1rem; */
	line-height: 2;
	font-weight: 600;
	padding: 0.5rem 1.5rem;
	border-radius: 0.7rem;
	border: 1px solid lightskyblue;
	transition: 0.2s ease-in-out;
}

/* .form-single-input-field:hover {
	border-color: rgb(2, 153, 247);
	border-width: 2px;
} */

.form-single-input-field:focus {
	box-shadow: 0 0 0.2rem 0.2rem lightskyblue;
	border-color: lightskyblue;
	outline: none;
}

.form-submit-button-container {
	margin-bottom: 0.3rem;
}

.form-submit-button {
	display: block;
	text-align: center;
	width: 100%;
	padding: 0.5rem 1.2rem;
	background-color: lightskyblue;
	border-color: lightskyblue;
	border: 0;
	border-radius: 0.7rem;
	color: white;
	font-weight: 600;
	line-height: 2;
}

.form-submit-button:hover {
	background-color: rgb(154, 212, 249);
	border-color: rgb(154, 212, 249);
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0, 0, .17, 1.08);
}