@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,800);

:root {
	--grey: #EBEBEB;
	--black: #000000;
	--blue: #1aadef;
	--light-blue: #1691c9;
	--white: #ffffff;
}

body {
	font-family: "Open Sans";
	margin: 0px;
	padding: 0px;
}

h2 {
	font-weight: 400;
	margin: 0;
}


form {
	margin: 0;
}
.box-section {
	display: flex;
	justify-content: center;
}

.box {
	background: var(--grey);
	border: 1px solid black;
	margin: 0 10px;
}

#login-box {
	width: 100%;
	max-width: 420px;
}


.title-bar {
	
	font-size: 14px;
	color: var(--grey);
	background: var(--blue);

	display: flex;
	border-bottom: 1px solid black;

}

.title-bar span {
	display: block;
	padding: 10px;
}

button#go-button {
	border-left: none;
}



.input-label {
	display: block;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 5px;
}

.input-field {
	width: 100%;
	height: 55px;
	border-radius: 0%;
	border: solid black;
	border-width: 1px;
	padding: 19px;
}

.box-inner {
	padding: 15px;
}

#login-form {
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.input-reg-heading {
	display: flex;
}


.input-reg-heading .select-api{
	margin-left: auto;
}
button {
	height: 55px;
	font-size: 24px;
	color: var(--white);
	width: 100%;
	background: var(--blue);
	
	border: 1px solid black;
	cursor: pointer;
}

button:hover {
	background: var(--light-blue);
}

#lookup-container {
	max-width: 1000px;
	width: 100%;
}


#lookup-title-bar{
	flex: 1;
	border-right: none;
}

#logout-button {
	font-size: 14px;

	background: var(--blue);
	color: var(--grey);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border: 0;
	padding: 0 10px;
	width: auto;
	height: auto;
	margin-left: auto;
}

#logout-button:hover {
	background: var(--light-blue);
}


#input-reg{ 
	width: 700;
}

#go-button {
	font-size: 24px;
	width: 70px;
	background: var(--blue);
	
	border: solid black;
	border-width: 1px;
	padding: 14px;

}

#go-button:hover {
	background: var(--light-blue);
}




.tables-section {
	margin-top: 15px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}



ul, li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.results-table {
	border: 1px solid black;
	width: 100%;
	flex-grow: 1;
}

.results-title{
	background: var(--blue);
	color: #fff;
	padding: 5px;
	font-size: 13px;
	border-top: 1px black solid;
	border-bottom: 1px black solid;
}
.results-title:first-of-type{
	border-top: none;
}


.results-value{
	text-align: right;
	padding: 5px;
	min-height:22px;
}
h3 {
	font-weight: 600;
	font-size: 20px;
	margin: 0 0 10px;
}

.input-with-go {
	display: flex;
}

@media screen and (max-width: 820px) {
	.tables-section {
		flex-direction: column;
	}
}

.text-link {
	color: var(--light-blue);
	text-decoration: none;
}

.text-link:visited {
	color: var(--light-blue);
}
.text-link:hover {
	text-decoration: underline;
}

.loader {
	width:20px;
	height: 20px;
	animation: linear spinner 1s infinite;

}

.loader use{
	fill: #fff;
}


.vin-lookup-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}
.vin-lookup-wrapper .loader{
	width: 16px;
	height: 16px;
}

.vin-lookup-wrapper .loader use{
	fill: var(--light-blue);
}

@keyframes spinner {
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
	
}

h1.header-text {
	margin: 50px 0;
	font-size: 100px;
	text-align: center;
	color: var(--grey);
	font-weight: 600;
}