/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Project Paragon. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

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

html {
	height: 100%;
}

body {
	font-family: 'Source Sans Pro', arial, sans-serif;
	background: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Header - matching projectparagon.com */
header {
	background: rgb(22, 22, 22);
	padding: 20px 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

header a {
	display: inline-block;
}

header img {
	height: 58px;
	width: auto;
}

/* Main Content */
main {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
}

.auth-container {
	text-align: center;
	max-width: 800px;
	width: 100%;
}

h1 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 3rem;
	margin-bottom: 30px;
	font-weight: 600;
	letter-spacing: -0.02em;
}

h1.success {
	color: #4ade80;
}

h1.error {
	color: #ff6b6b;
}

h1.warning {
	color: #fbbf24;
}

p {
	font-size: 1.25rem;
	opacity: 0.9;
	line-height: 1.8;
	font-weight: 300;
}

.spinner {
	margin: 40px auto;
	width: 50px;
	height: 50px;
	border: 3px solid rgba(255, 255, 255, 0.2);
	border-top-color: rgb(255, 255, 255);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.details {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 8px;
	margin-top: 30px;
	text-align: left;
}

.details h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.1rem;
	opacity: 0.8;
	font-family: 'Source Sans Pro', arial, sans-serif;
}

.details pre {
	background: rgba(0, 0, 0, 0.3);
	padding: 15px;
	border-radius: 4px;
	overflow-x: auto;
	font-size: 0.85rem;
	line-height: 1.5;
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.subtitle {
	font-size: 1rem;
	opacity: 0.6;
	margin-top: 30px;
}

.countdown {
	font-size: 1rem;
	opacity: 0.7;
	margin-top: 20px;
}

/* Footer - matching projectparagon.com */
footer {
	background: rgb(22, 22, 22);
	padding: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

footer div {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
}

footer address {
	font-style: normal;
	font-size: 0.9rem;
	opacity: 0.6;
	margin-bottom: 15px;
}

footer a {
	color: rgb(255, 255, 255);
	text-decoration: none;
	font-size: 1rem;
	opacity: 0.8;
	display: inline-block;
	margin: 5px 10px;
	transition: opacity 0.2s;
}

footer a:hover {
	opacity: 1;
}

footer p {
	font-size: 0.85rem;
	opacity: 0.5;
	margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
	header {
		padding: 15px 20px;
	}

	header img {
		height: 42px;
	}

	main {
		padding: 40px 20px;
	}

	h1 {
		font-size: 2rem;
	}

	p {
		font-size: 1rem;
	}

	footer {
		padding: 30px 20px;
	}

	footer a {
		display: block;
		margin: 10px 0;
	}
}
