* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Ropa Sans", sans-serif;
  background: linear-gradient(
    180deg,
    rgba(0, 36, 27, 1) 0%,
    rgba(109, 203, 227, 1) 0%,
    rgba(51, 207, 150, 1) 100%
  );
  color: white;
}

.title {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.container {
  width: 60%;
  height: 80%;
  text-align: center;
  margin: 0 auto;
  padding: 5em;
}

.sign-out-button.submit-sign-in {
  position: absolute;
  bottom: 5vh;
  right: 5vw;
  padding: 1em 2em;
}

.login-page,
.register-page {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background: rgb(0, 36, 27);
  background: linear-gradient(
    180deg,
    rgba(0, 36, 27, 1) 0%,
    rgba(109, 203, 227, 1) 0%,
    rgba(51, 207, 150, 1) 100%
  );
}

.register-page {
  display: none;
}

form {
  display: flex;
  flex-direction: column;
}

h1,
h2 {
  margin-bottom: 1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
label {
  margin-bottom: 0.3em;
}
input {
  margin-bottom: 2em;
  padding: 0.8em 2em;
  border: none;
  border-radius: 3px;
  outline: none;
  font-weight: bold;
  color: grey;

  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
input:focus {
  outline: 1px solid rgb(137, 238, 201) 100%;
}
.submit-sign-in {
  margin-top: -1em;
  padding: 0.9em 0;
  border: none;
  border-radius: 3px;
  background: rgb(129, 247, 203) 100%;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.form-text {
  margin-top: 0.3em;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: lighter;
}

.sign-up-link,
.sign-in-link {
  text-decoration: none;
  color: #023549;
}

.submit-sign-in:hover {
  cursor: pointer;
  background: rgb(113, 238, 192) 100%;
}

.add-task-input {
  font-family: "Ropa Sans", sans-serif;
  width: 20em;
  height: 2.5rem;
  margin: 2em 0;
  border-radius: 5px;
  border: none;
  outline-color: rgb(138, 211, 188);
  font-size: 1rem;
  color: grey;
}

.btn-add-task {
  margin-left: 0.25rem;
  width: 5em;
  height: 2.5rem;
  background-color: #79fed3;
  border: none;
  border-radius: 5px;
  outline: none;
  transition: 0.2s;
}

.btn-add-task:hover {
  background-color: rgb(92, 212, 174);
  cursor: pointer;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fa-plus {
  color: white;
  font-size: 1.3rem;
}

.tasks-list {
  list-style: none;
  margin-top: 2em;
}

li {
  list-style: none;
}

.white-background {
  background-color: white;
  height: 2.5rem;
  width: 70%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: black;
}

.task-info {
  color: gray;
  margin-left: 2em;
  font-size: 1.1rem;
  margin: 0 auto;
}

.task-container {
  display: flex;
  justify-content: center;
  margin: 2em auto;
  width: 60%;
}

.complete-task,
.delete-task,
.redo-task {
  height: 2.5rem;
  width: 2.5em;
  margin-left: 0.25rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.active,
.deleted-div,
.finished-div {
  position: relative;
}

.fas {
  pointer-events: none;
}

::placeholder {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.5;
  padding-left: 1em;
}

.complete-task:hover {
  background-color: rgb(123, 209, 182);
  cursor: pointer;
}

.delete-task:hover {
  background-color: rgb(226, 99, 99);
  cursor: pointer;
}

.redo-task:hover {
  background-color: #f5b76f;
  cursor: pointer;
}

.complete-task {
  background-color: #79fed3;
}

.delete-task {
  background-color: #fe7979;
}

.redo-task {
  background-color: #fec079;
}

.lists-container {
  display: flex;
  justify-content: center;
}

.active-tasks,
.deleted-tasks,
.finished-tasks {
  padding-top: 0.5em;
  font-size: 1.2rem;
  margin-left: 1em;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 10em;
  height: 3em;
  background-color: rgb(123, 209, 182);
}

.deleted-tasks {
  background-color: #fe7979;
}

.background {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.25em auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #35c496;
}

.red {
  background-color: #db4444;
}

.message {
  margin-top: 2em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
ul {
  position: absolute;
  width: 100%;
  margin: 0 auto;
}
