@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;

0,800;1,400;1,800&display=swap);@import url(https://fonts.googleapis.com/css2?family=Sora:ital,wght@0,400;0,800;1,400;1,800&display=swap);@import url(https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,400;0,800;1,400;1,800&display=swap);@charset "UTF-8";


body {
  background-color: #F0F0F1;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}

.login__container {
  height: 100vh;
  background-color: #F0F0F1;
}

.login__container .logo {
  margin-top: 3em;
  margin-bottom: 4em;
}

.login__container--form {
  background-color: white;
  border-radius: 40px;
  padding: 3em;
  max-width: 500px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.7);
}



.login__container--form form > div {
  margin-top: 1em;
}

.login__container--form input {
  margin-top: 1em;
  margin-bottom: 1em;
}

.login__container--form input[type=email],
.login__container--form input[type=password],
.login__container--form input[type=text] {
  width: 100%;
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #697F79;
}

.login__container--form .cta_forgot_password {
  margin-top: 0.5em;
  text-decoration: underline;
  color: black;
  font-size: 0.875rem;
  font-style: italic;
}

.button {
  border: 0;
  padding: 10px 22px;
  outline: none;
  color: white;
  background-color: #F08906;
  border: 3px solid #B04203;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Epilogue", sans-serif;
}

@media screen and (max-width: 992px) {
  .button {
    /*width: 100%;*/
  }
}

.dashboard__items {
  gap: 15px;
}

.dashboard__items--item {
  flex: 1;
  min-width: 250px;
  background-color: white;
  border: 1px solid black;
  border-radius: 16px;
}

.dashboard__items--item_title {
  border-bottom: 1px solid black;
  height: 50px;
}

.dashboard__items--item_title p {
  padding: 0.5em;
}

.dashboard__items--item_content ul {
  list-style-type: disc;
  list-style-position: inside;
}

.dashboard__items--item_content ul li {
  padding: 0.5em;
}

#articles_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2em;
}

#articles_table tr > th,
#articles_table tr {
  border: 1px solid black;
}

#articles_table tr > th,
#articles_table tr > td {
  padding: 1em;
}

#articles_table tr:nth-child(even) {
  background-color: white;
}

#articles_table tr > td > a {
  color: black;
}

main {
  margin-left: 300px;
  width: calc(100% - 300px);
}

.main {
  width: 100%;
  padding: 2em;
}

.main__header {
  margin-bottom: 2em;
}

.main__box {
  border: 1px solid black;
  padding: 1.4em;
  background-color: white;
  border-radius: 10px;
  margin-bottom: 2em;
}

.main__box--header {
  margin-bottom: 1em;
}

.main__box--header .cross-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.main__box h2 {
  font-weight: normal;
}

.main__buttons {
  gap: 15px;
  margin-bottom: 2em;
}

.sidebar {
  position: fixed;
  z-index: 1;
  overflow-x: hidden;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-color: #1B4068;
}

.sidebar ul li {
  padding: 1em;
  border-bottom: 2px solid #F0F0F1;
}

.sidebar ul li:first-child {
  border-bottom: 20px solid #F0F0F1;
}

.sidebar ul li a {
  color: white;
}

.background {
  background: #4e54c8;
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
  width: 100%;
  height: 100vh;
}

.logos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.logos li {
  position: absolute;
  display: block;
  list-style-type: none;
  width: 50px;
  height: 50px;
  background-image: url("./images/tail.png");
  background-repeat: no-repeat;
  -webkit-animation: animate 25s linear infinite;
          animation: animate 25s linear infinite;
  bottom: -150px;
}

.logos li:nth-child(1) {
  left: 72%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 43s;
          animation-duration: 43s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(2) {
  left: 8%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(3) {
  left: 5%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 34s;
          animation-duration: 34s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(4) {
  left: 43%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 38s;
          animation-duration: 38s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(5) {
  left: 46%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 19s;
          animation-duration: 19s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(6) {
  left: 85%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 29s;
          animation-duration: 29s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(7) {
  left: 66%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(8) {
  left: 5%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(9) {
  left: 41%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(10) {
  left: 86%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 36s;
          animation-duration: 36s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(11) {
  left: 27%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 39s;
          animation-duration: 39s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(12) {
  left: 99%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(13) {
  left: 36%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 22s;
          animation-duration: 22s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(14) {
  left: 71%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 37s;
          animation-duration: 37s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos li:nth-child(15) {
  left: 70%;
  width: 80px;
  height: 80px;
  -webkit-animation-duration: 17s;
          animation-duration: 17s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
