@charset "utf-8";
/* CSS Document */
body
{
	font-family: Verdana, sans-serif;
	font-size: 14px;
	background-color: rgba(72,145,237,0.87)
}
#layout
{
	max-width: 700px;
	margin: 0 auto;
	background-color: white;
	padding: 10px;
	min-height: 500px;
}
form 
{
	margin: 1rem;
	display: flex;
	gap: .5rem;
}
fieldset
{
	width: 100%;
}
input[type="text"],input[type="password"]
{
	flex:1;
	padding: 5px;
}

button
{
	padding: 5px 10px;
	background-color: darkblue;
	color: white;
	border-radius: 10px;
}
.todo
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .5rem;
	border-bottom: 1px solid #DDD;
	
}
.done
{
	text-decoration: line-through;
	color: #666;
}
.actions
{
	display: flex;
	gap: .5rem;
}
.date
{
	display: block;
	color:#999;
}
