/* title banner */
.title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1.6rem;
  background-color: #ff1694;
  position: relative;
}

.title p {
  font-family: Rosehot;
  font-size: var(--size-3xl);
}



/* log-in section */
section.log-in {
  background-color: var(--clr-dark);
  padding-top: 140px;
  padding-bottom: 50px;
  margin-top: 2.3rem;
  position: relative;
}

/* Heart icon */
.heart {
  left: 135px;
  top: -55px;
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #f20044;
  position: relative;
  transform: rotate(-45deg);
  box-shadow: -10px 10px 90px #f20044;
  animation: heart 0.6s linear infinite;
}

@keyframes heart {
  0%{
    transform: rotate(-45deg) scale(1.07);
  }
  80%{
    transform: rotate(-45deg) scale(1.0);
  }
  100%{
    transform: rotate(-45deg) scale(0.8);
  }
}

.heart::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #f20044;
  top: -50%;
  border-radius: 50px;
  box-shadow: -10px -10px 90px #f20044;
}

.heart::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #f20044;
  right: -50%;
  border-radius: 50px;
  box-shadow: 10px 10px 90px #f20044;
}

/* input elements */

.username {
  margin-bottom: 20px;
}

.log-in div p {
  margin-bottom: 5px;
}

.log-in div input {
  width: 100%;
  border: none;
  padding: 0.3rem;
}

/* button */

.log-in .log-in-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #ff1694;
  font-weight: bold;
  font-size: var(--size-base);
  margin-top: 25px;
  padding-block: 3px;
}

.log-in .feedback {
  color: var(--clr-red);
  margin-top: 10px;
  font-size: var(--size-xs);
}