body,
html {
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'JetBrains Mono', monospace;
	background-color: #121212;
	color: #fff;
}

.container {
	text-align: center;
}

input[type='text'] {
	padding: 10px;
	width: 300px;
	border-radius: 5px;
	border: 2px solid transparent;
	font-size: 16px;
	background-color: #2c2f33;
	color: #c5c6c7;
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

input[type='text']:focus {
	border-color: #00a8e8;
	box-shadow: 0 0 10px rgba(0, 168, 232, 0.5);
	outline: none;
}

button {
	padding: 10px 20px;
	margin-top: 10px;
	border-radius: 5px;
	border: none;
	background-color: #00a8e8;
	color: #1e1e1e;
	font-size: 16px;
	font-weight: normal;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

button:hover {
	background-color: #0091d2;
}

.result {
	margin-top: 20px;
}

.result a {
	color: #00a8e8;
	text-decoration: none;
}

.result a:hover {
	text-decoration: underline;
}

.notification {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #333;
	color: #fff;
	padding: 10px;
	border-radius: 5px;
	opacity: 0;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
	transform: translateY(20px);
}

.notification.show {
	opacity: 1;
	transform: translateY(0);
}

.chatting-gif {
	margin: 20px auto;
	width: 100px;
	height: auto;
}

.error {
	color: #ff5555;
	margin-top: 10px;
}

.back-home {
	color: #00a8e8;
	text-decoration: none;
	font-size: 18px;
	margin-top: 20px;
	display: inline-block;
}

.back-home:hover {
	text-decoration: underline;
}
