﻿body {
	background-color: #121212;
	color: #E0E0E0;
}

.login-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: #121212;
	color: #fff;
}

.login-card {
	position: absolute;
	top: 35%;
	text-align: center;
	background: #1e1e1e;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

h3 {
	margin-bottom: 10px;
}

p {
	opacity: 0.8;
}

.logout-button {
	background-color: #d20617;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

	.logout-button:hover {
		background-color: #da4e0e;
	}
