*{
  margin: 0;
  padding: 0;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}
.container {
  background-color: rgba(53, 52, 52, 0.678);
  box-shadow: 0 4px 6px rgba(167, 165, 165, 0.1);
  border-radius: 8px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
}
.title {
  color: #e5e7eb;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.task {
  display: flex;
  margin-bottom: 16px;
}
.task input {
  flex-grow: 1;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.task button {
  background-color: #f89a2f;
  color: #ffffff;
  padding: 8px;
  border: none;
  border-radius: 0px 15px 15px 0px;
  cursor: pointer;
}
.task button:hover {
  background-color: #af7011;
}
.task button:active {
  background-color: hsl(0, 5%, 85%);
}
.task-list {
  color: #e5e7eb;
  list-style: none;
  padding: 0;
  margin: 0;
}
li {
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #e5e7eb;
}
li {
  border-bottom: none;
}
li input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #f89a2f;
}
/* login and signin css */
.login h3 {
  text-align: center;
  color:#f89a2f;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.login {
  display: inline-block;
  position: absolute;
  background:rgba(53, 52, 52, 0.678);
  backdrop-filter: border;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
label{
  color: #fcf8f8;
}
a{
  text-decoration: none; 
  color:#f89a2f;
}
a:hover{
  color:#cca170;
}
form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  background-color: rgba(105, 100, 100, 0.2);
  color: #fcf8f8;
  outline: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

form input:focus {
  border-color:#f89a2f;
  box-shadow: 0 0 8px rgba(253, 205, 116, 0.6);
  background-color: rgba(250, 164, 5, 0.3);
}

.btn {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.btn button {
  flex: 1;
  padding: 10px;
  margin: 0 5px;
  background-color:#f89a2f;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn button:hover {
  background-color: #e2bb0f;
}
.btn button:active {
  background-color: hsl(0, 0%, 50%);
}

.task-list button {
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.task-list button:hover {
  background-color: #d32f2f;
}

.task-list button:active {
  background-color: #b71c1c;
}
