:root {
	/* Brand colors */
	--thoughtful-ocean-blue-color: rgba(4.0, 66.0, 102.0, 1.0);
	--thoughtful-ocean-gold-color: rgba(238.0, 190.0, 50.0, 1.0);
	--thoughtful-brand-tint-color: var(--thoughtful-ocean-blue-color);
	
	/* Semantic colors */
	--primary-text-color: rgba(0.0, 0.0, 0.0, 1.0);
	--stroke-color: var(--gray-4);
	
	--primary-control-color: var(--thoughtful-ocean-blue-color);	
	--primary-control-highlight-color: rgba(6.0, 91.0, 140.0, 1.0);
	
	--primary-control-light-color: rgba(220.0, 227.0, 230.0, 1.0);
	--primary-control-light-highlight-color: rgba(244.0, 252.0, 255.0, 1.0);
	
	/* Grays */
	--gray-1: rgba(51, 51, 51, 1.0);
	--gray-2: rgba(79, 79, 79, 1.0);
	--gray-3: rgba(130, 130, 130, 1.0);
	--gray-4: rgba(189, 189, 189, 1.0);
	--gray-5: rgba(224, 224, 224, 1.0);
	--gray-6: rgba(242, 242, 242, 1.0);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	background-color: #fff;
	font-family: "Avenir Next", "Helvetica";
	color: var(--primary-text-color);
}

b {
	font-weight: 600;
}

a, a:link, a:hover, a:visited {
	color: var(--primary-control-color);
	text-decoration: none;
}

p {
	margin-block-end: 0px;
	margin-block-start: 1em;
}

form {
	display: flex;
	flex-direction: column;
	align-content: stretch;
	row-gap: 8px;
}

form input {
	flex-grow: 1;
	padding: 8px;
	border: none;
	border-radius: 0px;
	border-bottom: 1.5px solid var(--stroke-color);
	font-size: 18px;
	font-family: "Avenir Next";
}
form input[valid=no] {
	border-color: #D13838 !important;
}
form input[valid=yes] {
	border-color: #219653 !important;
}
form input:focus {
	outline: none;
	background-color: var(--primary-control-light-color) !important;
	color: black !important;
}
form input:focus::placeholder {
	color: var(--gray-3);	
}
form input:not([valid]):focus {
	border-color: var(--primary-control-color);
}


.full_width_hairline {
	position: relative;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	
	border-bottom: 0.5px solid var(--stroke-color);
}

#container {
	width: 700px;
	margin: 0px auto;
	padding-top: 24px;
	min-height: 100%;
}
#header {
	display: table;
	width: 100%;
	padding-left: 16px;
	padding-right: 16px;
}
#header #title {
	display: table-cell;
	vertical-align: middle;
	font-family: "Avenir Next", "Helvetica";
	font-weight: bold;
	font-size: 28px;
}
#header #title a {
	color: var(--primary-text-color) !important;
}

#header #LogInOrOut {
	display: table-cell;
	float: right;
	text-align: right;
	vertical-align: middle;
	font-weight: 500;
	font-size: 18px;
}

#header #LogInOrOut a:hover {
	text-decoration: underline;
}

#content {
	margin-left: 16px;
	margin-right: 16px;
	margin-top: 16px;
	font-size: 16px;
}

#content .section {
	margin-top: 32px;
}

#content .section-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

#footer {
	margin: 0px auto;
	margin-top: 40px;
	padding-bottom: 24px;
	text-align: center;
	color: var(--gray-2);
	font-size: 12px;
}

#footer a:hover {
	text-decoration: underline;
}

.dimming {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0.0, 0.0, 0.0, 0.5);
	z-index: 10000;
}

.dimming .spinner {
	font-size: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); 
}

.gold {
	background: -webkit-linear-gradient(to bottom, rgba(235,192,68,1.0) 0%, rgba(223,184,59,1.0) 100%);
	background: -moz-linear-gradient(to bottom, rgba(235,192,68,1.0) 0%, rgba(223,184,59,1.0) 100%);
	background: linear-gradient(to bottom, rgba(235,192,68,1.0) 0%, rgba(223,184,59,1.0) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; 
}

.ocean-blue {
	background: -webkit-linear-gradient(to bottom, rgba(44,126,250,1.0) 0%, rgba(4,66,102,1.0) 100%);
	background: -moz-linear-gradient(to bottom, rgba(44,126,250,1.0) 0%, rgba(4,66,102,1.0) 100%);
	background: linear-gradient(to bottom, rgba(44,126,250,1.0) 0%, rgba(4,66,102,1.0) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media only screen and (max-width:699px) {
	#container {
		min-width: 320px;
		width: 100%;
	}
}