* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

.navbar {
  height: 50px;
  background-color: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.title{
  color: white;

}

.user-name{
  color: aqua;
}

.login-btn{
  background-color: #06c;
  border: none;
  width: 100px;
  height: 35px;
  border-radius: 22px;
  color: white;
}

.container {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  padding:10px 0;
}

#form-todo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
 margin:10px auto;
  gap: 10px;
}

.input {
  height: 40px;
  border: 1px solid lightgray;
  padding: 0 10px;
  border-radius: 10px;
  outline: none;
  width: 90%;
}

textarea {
  height: 200px !important;
}

.input:focus {
  outline: 3px solid rgb(10, 114, 219);
  /* flex: 1; */
}

.btn {
  width: 200px;
  border: none;
  cursor: pointer;
  background-color: #06c;
  color: white;
  font-weight: 700;
  font-size: 19px;
  height: 40px;
}

#todo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 80%;
  background-color: #f2f2f2;
  margin: 10px auto;
  /* padding: 10px; */
  border: 1px solid lightgray;
}

.todo-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border-bottom: 1px solid gray;
  width: 100%;
  padding: 10px 20px;
}

.todo-title {
  font-size: 19px;
  font-weight: 800;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.todo-desc {
  color: #1d1d1f;
  opacity: 0.75;
  font-size: 15px;
}

.delete-btn {
  width: 100px;
  height: 30px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  background-color: rgb(204, 0, 0);
  color: wheat;
}
