/**
 * Success handoff page — the brief "Verification successful, redirecting..."
 * page rendered by AgeWallet_OIDC_Handler between successful OIDC callback
 * and returning the visitor to the originally-requested URL.
 */

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin: 0;
	padding: 2em;
	text-align: center;
	color: #444;
	background-color: #f0f0f1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container {
	max-width: 400px;
	padding: 2em;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba( 0, 0, 0, 0.1 );
}

p {
	margin: 1em 0 1.5em;
	font-size: 1.1em;
	line-height: 1.5;
}

a {
	color: #0073aa;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.spinner {
	display: inline-block;
	box-sizing: border-box;
	width: 24px;
	height: 24px;
	border: 4px solid rgba( 0, 115, 170, 0.2 );
	border-radius: 50%;
	border-top-color: #0073aa;
	animation: agewallet-oidc-success-spin 1s ease-in-out infinite;
	margin-left: 10px;
	vertical-align: middle;
}

@keyframes agewallet-oidc-success-spin {
	to { transform: rotate( 360deg ); }
}

noscript strong {
	color: #d63638;
}
