.hidden {
  display: none;
}

html {
	width: 100%;
	height: 100%;
}

body { 
	width: 100%;
	height: 100%;
	overflow: hidden;
	
	color: white;

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

.panel {
	width: 50%;
	height: 50%;

	background-color: rgba(0, 0, 0, 0.5) ;
	border-radius: 10px;

	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

form {
	width: 65%;
}

#login-form {
	div {
		display: flex;
		align-items: center;
		gap: 5px;
		height: 35px;

		input[type="text"] {
			flex-grow: 1;
			height: 25px;
		}
		#submit {
			height: 30px;
		}
	}
}

#todo-form {
	display: flex;
	height: 35px;

	input[type="text"] {
		flex-grow: 1;
		height: 25px;
	}
}

ul {
	width: 65%;
	height: 120px;

	list-style: none;
	padding-left: 0;
	margin: 0;
	margin-bottom: 10px;

	overflow-y: auto;

	li {
		margin-bottom: 4px;
	}
}