body {
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.login-container {
	background: var(--bg-color2);
	padding: 30px;
	border: 1px solid var(--border-color2);
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 360px;
}

.logo {
	margin-bottom: 20px;
	text-align: center;
}

.logo svg {
	width: 200px;
	height: auto;
}

h1 {
	font-size: 16px;
	color: var(--text-color);
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-align: center;
}

h3 {
	font-size: 13px;
	color: var(--text-color);
	text-transform: uppercase;
	margin: 20px 0 10px;
	letter-spacing: 1px;
	text-align: center;
}

.form-label {
	font-size: 12px;
	color: var(--text-color);
}

.form-control {
	border: 1px solid var(--border-color);
	color: var(--text-color);
	font-family: 'Arial', sans-serif;
	font-size: 12px;
	border-radius: 5px;
}

.form-control:focus {
	border-color: var(--button-text);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	color: var(--text-color);
}

.btn-login {
	width: 100%;
	padding: 10px;
	background: var(--button-bg);
	border: none;
	color: var(--button-text);
	font-family: 'Arial', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	border-radius: 5px;
}

.btn-login:hover {
	background: var(--button-hover-bg);
	color: var(--button-text);
}

.response-message {
	color: #ff3333;
	font-size: 12px;
	margin-top: 10px;
	text-align: center;
}

.links {
	margin-top: 15px;
	text-align: center;
}

.links a {
	color: var(--text-color);
	font-size: 12px;
	text-decoration: none;
	margin: 0 10px;
}

.links a:hover {
	text-decoration: underline;
}

.social-login-buttons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 10px;
}

.social-login-buttons a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	background: var(--button-bg);
	color: var(--button-text);
	font-family: 'Arial', sans-serif;
	font-size: 12px;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s;
}

.social-login-buttons a:hover {
	background: var(--button-hover-bg);
	color: var(--button-text);
}

.social-login-buttons a i {
	margin-right: 8px;
	font-size: 14px;
}

.telegram-login {
	grid-column: span 3;
	display: flex;
	justify-content: center;
}