.spinner {
	position: relative;
	width: 325px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid;
	border-radius: 10px;
}

.spinner .spinner-icon {
	border: 4px solid #f3f3f3;
	/* Light grey */
	border-top: 4px solid #7289da;
	/* Blue */
	border-radius: 50%;
	width: 20px;
	height: 20px;
	animation: spin 2s linear infinite;
	float: left;
}

.spinner .spinner-message {
	font-size: 18px;
	color: #3498db;
	margin-top: 0px;
	margin-left: 5px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

body {
	background-color: #292d3e;
	color: #ffffff;
}

.input-group {
	display: flex;

	margin: 1rem 0;

	flex-direction: row;
	gap: 1rem;

	align-items: center;
}

.container {
	min-height: 150px;
	min-width: 200px;

	padding: 2rem;

	display: flex;

	flex-direction: column;

	align-items: center;
	justify-content: center;
}

h1 {
	text-align: center;
	color: #7289da;
}

body {
	background-color: #2c2f33;
	color: #99aab5;
}

#login-view {
	display: flex;
	align-items: center;
	justify-content: center;
}

#login-button {
	background-color: #7289da;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
	cursor: pointer;
}

#login-button:hover {
	background-color: #5f6368;
}