@import url("./reset.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #dae3ec, #c8d3dd);
  color: #636363;
}

.todo-wraper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}

.todo-list {
  width: 800px;
  border-radius: 10px;
  padding: 30px;

  background-color: #fff;
  box-shadow: 0 0 50px #c8d3dd;
}

.title-text {
  margin-bottom: 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-text h1 {
  color: #4a4a4a;
  font-size: 30px;
  font-weight: 600;
}

.title-text h1 a {
  color: #ff4400;
  font-size: 30px;
  font-weight: 600;
  text-decoration: underline;
}

.time {
  display: flex;
  gap: 10px;
  align-items: center;
}

.current-time {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.current-time p {
  color: #636363;
  font-size: 19px;
}

.current-time span {
  font-size: 16px;
  color: #ff4400;
}

.current-data {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.current-data p {
  color: #636363;
  font-size: 19px;
}

.current-data span {
  font-size: 16px;
  color: #ff4400;
}

.tasks-text {
  margin-bottom: 30px;

  font-size: 40px;
  color: #636363;
  font-weight: 600;
  text-align: center;
}

.tasks-text span {
  font-size: 40px;
  color: #ff4400;
  font-weight: 600;
}

.form {
  margin-bottom: 60px;

  display: flex;
  gap: 20px;
  justify-content: center;
}

.form-input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background-color: #efefefbb;
  border: 1px solid #585858;

  color: #ff4400;
  font-size: 18px;
}

.form-btn {
  width: 80px;
  background-color: #ff4400;
  color: #fff;
  border-radius: 5px;

  font-size: 18px;
  font-weight: 500;
  height: 45px;

  transition: 0.2s;
}

.form-btn:hover {
  opacity: 0.8;
}

hr {
  max-width: 100%;
  border: 1px solid #ff4400;
  margin-bottom: 30px;
}

.title-tasks {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}

.title-tasks span {
  color: #ff4400;
}

.lenght-tasks {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.lenght-tasks p {
  font-size: 24px;
  font-weight: 600;
}

.lenght-tasks span {
  font-size: 24px;
  color: #ff4400;
}

.tasks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.task {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 360px;

  padding: 8px;
  border-radius: 10px;
  background-color: #eeeeee;
  border: 1px solid #ccc;
}

.task p {
  font-size: 18px;
  color: #ff723f;
  padding-right: 5px;
  word-wrap: break-word;
  word-break: break-all;
}

.task-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  width: 25px;
  background-color: #34c924;
  border-radius: 5px;
  color: #fff;
  height: 25px;
}

.cross {
  width: 25px;
  background-color: #ff0000;
  color: #fff;
  border-radius: 5px;
  height: 25px;
}

.tasks-column {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

.done {
  color: #ff480081 !important;
  font-weight: 600;
  text-decoration: line-through;
}

.other-todo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.other-todo h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.other-todo a {
  margin-bottom: 8px;
  color: #ff4400;
}

#title-task {
  max-width: 290px;
  word-wrap: break-word;
}

.tasks-left {
  height: 200px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tasks-left ::-webkit-scrollbar {
  display: none;
}

.tasks-right {
  height: 200px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tasks-right ::-webkit-scrollbar {
  display: none;
}
