:root {
	--primary: #FF3D00;
	--primary-dark: #DD2C00;
	--secondary: #1A1A1A;
	--background: #0A0A0A;
	--surface: #1E1E1E;
	--text: #FFFFFF;
	--text-muted: #999999;
	--border: #333333;
	--success: #00E676;
	--danger: #FF1744;
}

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

body {
	font-family: 'IBM Plex Mono', monospace;
	background: var(--background);
	color: var(--text);
	min-height: 100vh;
}

.auth-page {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 20px;
	background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
	position: relative;
	overflow: hidden;
}

.auth-page::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255, 61, 0, 0.15) 0%, transparent 70%);
	animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.3; }
	50% { transform: scale(1.2); opacity: 0.5; }
}

.auth-container {
	width: 100%;
	max-width: 1100px;
	position: relative;
	z-index: 1;
}

.auth-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: var(--surface);
	border: 2px solid var(--border);
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-brand {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	padding: 60px 40px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.auth-brand::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="white" opacity="0.05"/></svg>');
	background-size: 20px 20px;
}

.brand-content {
	position: relative;
	z-index: 1;
}

.brand-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 72px;
	line-height: 0.9;
	font-weight: 400;
	letter-spacing: 4px;
	margin-bottom: 20px;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-subtitle {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.brand-decoration {
	width: 100px;
	height: 4px;
	background: white;
	margin-top: 30px;
	position: relative;
}

.brand-decoration::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
	height: 4px;
	background: white;
	animation: slide 2s ease-in-out infinite;
}

@keyframes slide {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(-80px); }
}

.auth-forms {
	padding: 60px 40px;
	background: var(--surface);
}

.form-tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 40px;
	border-bottom: 2px solid var(--border);
}

.tab-btn {
	background: none;
	border: none;
	color: var(--text-muted);
	padding: 15px 20px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.tab-btn.active {
	color: var(--primary);
}

.tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary);
}

.tab-btn:hover {
	color: var(--text);
}

.auth-form {
	display: none;
	animation: fadeIn 0.3s ease;
}

.auth-form.active {
	display: block;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

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

.form-group label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	color: var(--text-muted);
}

.form-control {
	width: 100%;
	padding: 15px;
	background: var(--background);
	border: 1px solid var(--border);
	color: var(--text);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.1);
}

.btn-block {
	width: 100%;
	padding: 15px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.btn-primary {
	background: var(--primary);
	color: white;
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 61, 0, 0.3);
}

.register-info {
	margin-top: 15px;
	padding: 12px;
	background: rgba(255, 61, 0, 0.1);
	border-left: 3px solid var(--primary);
}

.register-info small {
	color: var(--text-muted);
	font-size: 12px;
}

.alert {
	padding: 15px;
	margin-bottom: 20px;
	border-left: 3px solid;
	font-size: 14px;
}

.alert-danger {
	background: rgba(255, 23, 68, 0.1);
	border-color: var(--danger);
	color: var(--danger);
}

@media (max-width: 768px) {
	.auth-grid {
		grid-template-columns: 1fr;
	}
	
	.auth-brand {
		padding: 40px 30px;
	}
	
	.brand-title {
		font-size: 56px;
	}
	
	.auth-forms {
		padding: 40px 30px;
	}
}
