:root {
	--bg-dark: #0a0a0a;
	--bg-darker: #050505;
	--accent-cyan: #00d4d4;
	--accent-magenta: #ff00ff;
	--text-primary: #e0e0e0;
	--text-secondary: #909090;
	--border: #1a1a1a;
}

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

body {
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #0a0a0a;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 20px;
}

.container {
	background: #111;
	border-radius: 8px;
	padding: 40px;
	width: 100%;
	max-width: 400px;
}

.container::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;	
	background: radial-gradient(circle at center top, rgba(0, 212, 212, 0.05), transparent 70%);
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 0;
}

h1 {
	text-align: center;
	margin-bottom: 10px;
	font-size: 28px;
}

.subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}

.error {
	background: rgba(220, 53, 69, 0.1);
	border: 1px solid rgba(220, 53, 69, 0.3);
	color: #dc3545;
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 8px;
	color: #999;
	font-size: 14px;
}

input[type="email"] {
	width: 100%;
	padding: 12px;
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	color: #fff;
	font-size: 16px;
}

input[type="email"]:focus {
	outline: none;
	border-color: #606060;
}

button {
	width: 100%;
	padding: 12px;
	background: #606060;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	text-transform: uppercase;
	
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
	color: #fff;	
	
}

button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 212, 212, 0.3);
}

button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.hidden-form {
	display: none;
}

#loadingOverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

#loadingOverlay.show {
	display: flex;
}

.loading-box {
	background: #111;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
}

.spinner {
	width: 40px;
	height: 40px;
	margin: 0 auto 15px;
	border: 3px solid #2a2a2a;
	border-top-color: #606060;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

.loading-text {
	color: #999;
	margin: 0;
}