body {
  margin: 0;
  font-family: "Muli", sans-serif;
  background: linear-gradient(to left, #d92027, #1b6ca8);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  max-width: 1900px;
  overflow-x: hidden;
  margin: auto;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  color: white;
  height: 100px;
  justify-content: space-between;
  width: 100%;
}

.header__img {
  width: 200px;
  margin-left: 30px;
}

.header__menu {
  margin-right: 30px;
}
.header__menu ul {
  list-style: none;
  padding: 0px;
  position: absolute;
  width: 100px;
  text-align: right;
  margin: 0px 0px 0px -14px;
}
.header__menu li {
  margin: 10px 0;
}
.header__menu li a {
  color: white;
  text-decoration: none;
}
.header__menu li a:hover {
  text-decoration: underline;
}

.header__menu--profile {
  margin-right: 8px;
  display: flex;
}
.header__menu--profile img {
  margin-right: 8px;
  width: 40px;
  align-items: center;
}
.header__menu--profile p {
  margin: 0;
  color: white;
}

.header__menu--links {
  display: none;
}

.header__menu:hover .header__menu--links,
.header__menu--links:hover {
  display: block;
}

.header__menu:focus-within .header__menu--links,
.header__menu--links:focus-within {
  display: block;
}

.main {
  text-align: center;
  height: 150px;
}

.main__title {
  color: white;
  font-size: 25px;
}

.main__input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 25px;
  color: white;
  font-family: "Muli", sans-serif;
  font-size: 16px;
  height: 50px;
  padding: 0 20px;
  width: 70%;
  outline: none;
}

::placeholder {
  color: white;
}

.categories__title {
  color: white;
  font-size: 16px;
  position: absolute;
  padding: 30px;
  width: 100%;
}

.carousel {
  width: 100%;
  overflow: scroll;
  padding: 30px;
  position: relative;
}

.carousel__container {
  white-space: nowrap;
  margin: 45px 0;
}

.carousel-item {
  height: 300px;
  border-radius: 20px;
  margin: 0 10px;
  display: inline-block;
  transition: 450ms;
  transform-origin: center left;
  position: relative;
  overflow: hidden;
}

.carousel-item__img {
  height: 300px;
  object-fit: cover;
}

.carousel-item:hover ~ .carousel-item {
  transform: translate3d(100px, 0, 0);
}

.carousel__container:hover .carousel-item {
  opacity: 0.4;
}

.carousel__container:hover .carousel-item:hover {
  transform: scale(1.5);
  opacity: 1;
}

.carousel-item:last-child {
  margin-right: 150px;
}

.carousel-item__details {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), black);
  font-size: 10px;
  opacity: 0;
  color: white;
  transition: 450ms opacity;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
}
.carousel-item__details img {
  width: 30px;
  margin-left: 5px;
  cursor: pointer;
}

.carousel-item:hover .carousel-item__details {
  opacity: 1;
}

.carousel-item__details--title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  white-space: pre-wrap;
}

.in {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0px 30px;
  min-height: calc(100vh - 200px);
}

.in__container {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 40px;
  color: white;
  padding: 60px 68px 40px;
  min-height: 700px;
  width: 300px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}

.in__container--form {
  display: flex;
  flex-direction: column;
}
.in__container--form label {
  font-size: 14px;
}

.in__container--remember-me {
  color: white;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.in__container--remember-me a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

.in__container--remember-me a:hover {
  text-decoration: underline;
}

.in__container--social-media > div {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.in__container--social-media > div > img {
  width: 30px;
  margin-right: 10px;
}

.in__container--register {
  font-size: 14px;
}
.in__container--register a {
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.in__container--register a:hover {
  text-decoration: underline;
}

.inputs {
  background-color: transparent;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid white;
  font-family: "Muli", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 0 20px;
  outline: none;
  color: white;
  height: 50px;
}

.button {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 25px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  font-family: "Muli", sans-serif;
  height: 50px;
  letter-spacing: 1px;
  margin: 10px 0px;
}

.in__login {
  text-align: center;
}
.in__login a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.in__login a:hover {
  text-decoration: underline;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.not-found__title {
  font-size: 100px;
  margin-bottom: 0;
  animation-name: pulse;
  animation-duration: 1s;
}

.not-found__subtitle {
  margin-bottom: 200px;
}

.footer {
  display: flex;
  align-items: center;
  height: 100px;
  width: 100%;
}
.footer a {
  color: white;
  cursor: pointer;
  font-size: 14px;
  padding-left: 30px;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 720px) {
  .header {
    display: block;
    text-align: center;
    margin: 10px 0;
  }

  .header__img {
    width: 250px;
    margin: 0;
  }

  .header__menu {
    margin: 0;
    margin-top: 20px;
  }
  .header__menu img {
    display: none;
  }
  .header__menu p {
    display: none;
  }

  .header__menu--links {
    display: flex;
    justify-content: center;
  }
  .header__menu--links ul {
    margin: 0;
    text-align: center;
  }
  .header__menu--links a {
    font-size: 16px;
    font-weight: 400;
  }

  .header__menu:hover .header__menu--links,
  .header__menu--links:hover {
    display: flex;
  }

  .header__menu:focus-within .header__menu--links,
  .header__menu--links:focus-within {
    display: flex;
  }

  .main {
    margin-top: 70px;
    height: 130px;
  }

  .categories__title {
    font-size: 20px;
    padding: 10px;
    text-align: left;
    margin: 10px;
  }

  .carousel-item {
    height: 200px;
    outline: none;
  }

  .carousel__container {
    margin-bottom: 5px;
  }

  .carousel-item__img {
    height: 200px;
  }

  .carousel-item:hover ~ .carousel-item {
    transform: translate3d(20px, 0, 0);
  }

  .carousel__container:hover .carousel-item:hover {
    transform: scale(1.3);
  }

  .carousel-item:last-child {
    margin-right: 100px;
  }

  .carousel-item:hover .carousel-item__details {
    opacity: 0;
  }

  .in__container {
    border: none;
    background: transparent;
    text-align: center;
  }

  .in__container--remember-me a:hover {
    text-decoration: underline;
  }

  .in__container--social-media > div {
    justify-content: center;
  }

  .footer {
    flex-direction: column;
    justify-content: center;
  }
  .footer a {
    padding: 0;
    margin-bottom: 5px;
  }
}

/*# sourceMappingURL=styles.css.map */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 1rem;
}

::-webkit-scrollbar-track {
  background: #d92027;
}

::-webkit-scrollbar-thumb {
  background: #1b6ca8;
  border-radius: 1rem;
  transition: 0.5s;
}

::-webkit-scrollbar-thumb:hover {
  transition: 0.5s;
  background: #1b6ca8;
}
