
*,*::before,*::after {
	box-sizing: border-box;
}

body {
	font-family: sans-serif;
	font-size: 18px;
	margin:0;
    text-color:gray;
}

li {
	line-height: 1.4rem;
}

.container {
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: space-between;
	padding: 0 2vw 0 2vw;
}

.header {
    padding-top: 2vh;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 2rem;
    padding-bottom: 15vh;
    border-radius: 2px;
    align-items: center;
}
input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid gray;
    border-radius: 4px;
    width: 70%;
    height: 15px;
    max-width: 275px;
    outline: none;
}
input:focus, input:focus-visible { 
    border: 1px solid blue;
    outline: none;
}

input.error { 
    border-color: red;
    outline: none;
}

.error-msg {
    color: red;
    margin: 0;
    text-align: center;
    visibility: hidden;
}

.content {
	display: flex;
	flex: 1;
	flex-direction: column;
	max-width: 900px;
}

.content-title {
	padding-top: 15vh;
	padding-bottom: 8vh;
}


.content-body > p {
	line-height:1.4rem;
}

.citations {
    padding-top:6vh;
    padding-bottom:2vh;
	line-height:1.4rem;
    font-size:11px;
}

.footer {
	font-size: 10px;
	color: gray;
	text-align: center;
    padding-bottom: 1vh;
    line-height:1.2rem;
}

.indent {
	margin: 0 0 0 1.6rem;
}

.x {
    color: gray;
}

