body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background-image: url(img/luxury-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  min-height: 100vh;
}

main {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 0 30px;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 600px;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 55px 0 55px 0;
  box-shadow: 0 5px 15px rgb(0 0 0 / 49%);
  background-image: url(img/questions__inner-bg-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

h1,
p {
  text-align: center;
  color: #333;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

input {
  width: 100%;
}

input,
button {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  /* flex: 1; */
}

input:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 5px #0077ff88;
}

button {
  background-color: #84d9d4;
  color: #000;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 2px 2px 2px 0px #00000073;
}

button:hover {
  background-color: #80c7c2;
}

#task-list {
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.task {
  background: #f1f1f1;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 5px solid #0077ff;
  border-radius: 8px 8px 35px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#task-list .task span {
  width: 100%;
}

#task-list .task button {
  width: 20%;
}

.task-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#task-date,
#task-time {
  width: 45%;
}

/* #task-time {
  margin-top: 10px;
} */

.task.done {
  background: #d4edda;
  border-left-color: #28a745;
  text-decoration: line-through;
}

.task.alert {
  background: #fff3cd;
  border-left-color: #ffc107;
}

.task.alert span {
  width: 100%;
}

.task button {
  background: #dfdfdf;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 15px;
  border: 1px solid #b3b3b3;
  margin-right: 10px;
  box-shadow: 2px 2px 2px 0px #00000073;
}
