* {
	box-sizing: border-box;
	font-family: "Lato", sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	background-color: #7289DA;
}
  
  *, *::before, *::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
  }
  .login {
	width: 400px;
	background-color: #ffffff;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	margin: 100px auto;
  	z-index:10;
}
.login h1 {
	text-align: center;
	color: #7289DA;
  	font-weight: bold;
  	text-shadow: 2px 2px 4px #ffffff;
	font-size: 28px;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #dee0e4;
  	background-image: url("backki.png");
  	background-size: 100%;
  
}
.login h5 {
   margin-top: 8px;
	text-align: center;
	color: #23272A;
	font-size: 18px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}
.login form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 20px;
}
.login form label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
  background-color: #2C2F33;
	color: #ffffff;
}

.button {
	width: 100%;
	padding: 15px;
   	margin-top: 0px;
	background-color: #2C2F33;
	border: 0;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	transition: background-color 0.2s;
  
}
.button:hover {
  background-color: #2868c7;
	transition: background-color 0.4s;
}
.login form input[type="text"] {
	width: 318px;
	height: 48px;
	border: 1px solid #dee0e4;
	margin-bottom: 0px;
	padding: 0 15px;
}
.login form input[type="text"]:focus {
	background-color: #2868c7;
  	transition: background-color 2s;
	outline: none;
}

  svg {
	width: 64px;
	height: 64px;
  }
  
  .todo-list {
	list-style: none;
	margin-bottom: 20px;
  }
  
  .todo-item {
	margin-bottom: 10px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  
  .todo-item span {
	flex-grow: 1;
	margin-left: 10px;
	margin-right: 10px;
	font-size: 22px;
  }
  
  .done span {
	text-decoration: line-through;
	opacity: 60%;
  }
  
  input[type="checkbox"] {
	display: none;
  }
  
  .tick {
	width: 30px;
	height: 30px;
	border: 3px solid #333;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
  }
  
  .tick::before {
	content: '✓';
	font-size: 20px;
	display: none;
  }
  
  .done .tick::before {
	display: inline;
  }
  
  .delete-todo {
	border: none;
	background-color: transparent;
	outline: none;
	cursor: pointer;
  }
  
  .delete-todo svg {
	width: 30px;
	height: 30px;
	pointer-events: none;
  }
  
  .empty-state {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	display: none;
	padding-bottom: 200px;
	background-image: url("backki2.png");
	background-size: 100%;
  }
  
  .checklist-icon {
	margin-bottom: 20px;
  }
  
  
  .todo-list:empty {
	display: none;
  }
  
  .todo-list:empty + .empty-state {
	display: flex;
  }