html {
	height: 100%;
}

body {
	box-sizing: border-box;
	min-height: 100%;
	margin: 0;
	padding: 15px 30px;
	display: flex;
	flex-direction: column;
	color: white;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif;
	background-color: #2c2c32;
}

#branding {
	background-repeat: no-repeat;
	background-size: 28px;
	background-position: left 50%;
	padding-left: 36px;
	font-size: 20px;
	letter-spacing: -0.04rem;
	font-family: 'Segoe UI', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
	font-weight: 400;
	color: white;
	text-decoration: none;
}

#message-container {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 30px;
}

#message {
	font-weight: 300;
	font-size: 1.3rem;
}

/* redirect page styles */

#dialog-container {
	display: flex;
	flex-direction: column;
	padding: 24px;
	gap: 20px;
	max-width: 800px;
}

#title {
	font-weight: 600;
	font-size: 28px;
	margin: 0;
}

#actions {
	text-align: right;
}

#auth-code-container {
	background-color: rgb(70, 70, 70);
	padding: 0 10px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	margin: 20px 0;
}

#copy-button {
	background-color: rgb(255, 255, 255, 0.1);
	border-style: solid;
	border-color: transparent;
	border-radius: 5px;
	color: white;
	display: flex;
	padding: 4px;
}

#copy-button:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

#copy-button:focus {
	background-color: rgba(255, 255, 255, 0.2);
}

#copy-button:active {
	background-color: rgba(163, 163, 163, 0.1);
}

#auth-code {
	flex: auto;
	overflow: hidden;
	text-overflow: ellipsis;
}

.link-color {
	color: #328cf0;
}

.query-parameter-column {
	font-family: 'Courier New', Courier, monospace;
	vertical-align: top;
}

.query-parameter-row:hover {
	background-color: rgb(255, 255, 255, 0.1);
}
