.avante-strip {
  width: 100%;
  background: #0a0a0a;
  color: #9a9a9a;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  border-bottom: 1px solid rgba(56, 232, 255, 0.2);
}
.avante-strip a {
  color: #38e8ff;
  text-decoration: none;
}
.avante-strip a:hover {
  text-decoration: underline;
}
.avante-strip-brand {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Dosis', sans-serif;
  font-size: 16px;
}

main {
  background-image: linear-gradient(
    109.6deg,
    rgba(8, 40, 54, 1) 0%,
    rgba(5, 6, 8, 1) 55%,
    rgba(120, 25, 35, 0.35) 100%
  );
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.mainCard {
  width: 40vw;
  border-radius: 25px;
  background-color: #fff;
  padding: 25px;
}

.title {
  font-family: 'Dosis', sans-serif;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 15px;
}

.inputForm {
  border: none;
  padding: 10px;
  border: 1px solid #eee;
  outline: none;
  width: 35%;
}

.inputForm::placeholder {
  padding: 0px;
}

.btnCreate {
  padding: 10px 15px;
  background-image: linear-gradient(
    135deg,
    rgba(56, 232, 255, 1) 0%,
    rgba(30, 140, 170, 1) 100%
  );
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.cardsList {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: scroll;
  max-height: 60vh;
  height: 60vh;
}

.card {
  width: 90%;
  padding: 15px;
  box-shadow: 2px 4px 4px 4px rgba(71, 71, 71, 0.16);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  margin: 5px 0px;
  position: relative;
}

.task {
  padding: 10px;
}

.icon {
  cursor: pointer;
}

.icon:hover {
  color: rgba(56, 232, 255, 1);
}

.completeIcon {
  color: rgba(56, 232, 255, 1);
}

.trashIcon:hover {
  color: #f00;
}

.deleteConfirmationPop {
  position: relative;
  background-color: rgba(255, 255, 255);
  z-index: 99;
  width: 100%;
  top: -100px;
  left: 0;
}
.deleteSpace {
  position: relative;
  width: 30%;
}

.noTasks {
  font-size: 48px;
}

.date {
  width: 100%;
  padding: 15px;
}
@media (max-width: 600px){

  .inputForm{
    width: 30%;
    margin-right: 10px;
  }
  .mainCard{
    width: 70%;
  }
  .btnCreate{
    margin-left: 10px;
    font-size: 15px;
    padding: 0px 15px;
  }
}

@media (min-width: 601px) and (max-width: 1150px){
  .mainCard{
    width: 70%;
  }
}