/**************************/
/* lsr SECTION */
/**************************/
body {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.75),
      rgba(0, 70, 136, 0.75)
    ),
    url("../img/bg/ls-bg.webp"), url("../img/bg/ls-bg.jpg");
  height: 100vh;
}

.section-lsr {
  padding: 4rem 0 9.6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lsr {
  width: 85rem;
  display: grid;
  grid-template-columns: 45fr 55fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  /* gradient */
  background-image: linear-gradient(to right bottom, #8ea1f3, #4263eb);
  overflow: hidden;
}

.register {
  width: auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  /* gradient */
  background-image: linear-gradient(to right bottom, #8ea1f3, #4263eb);
  overflow: hidden;
}

.lsr-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #333;
}

.lsr-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.lsr.heading-secondary {
  color: #333;
  margin-bottom: 3.2rem;
}

.lsr-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.2)
    ),
    url("../img/login/i-love-food.webp");
  background-size: cover;
  background-position: center;
}

.sign-up-img-box {
  background-image: linear-gradient(
      to right bottom,
      hsla(229, 81%, 75%, 0.35),
      rgba(66, 100, 235, 0.35)
    ),
    url("../img/cta/cta.webp");
  background-size: cover;
  background-position: center;
}

/* lsr FORM */

.lsr-form {
  display: grid;
  row-gap: 2.4rem;
  margin-bottom: 1.2rem;
}

.lsr-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.lsr-form input,
.lsr-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.lsr-form input::placeholder {
  color: #aaa;
}

.lsr *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.363);
}

.button-lsr {
  margin-top: 1rem;
}

/**************************/
/* FOOTER SECTION */
/**************************/

.lsr-footer {
  padding: 0 0 3rem 0;
  border-top: none;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.copyright {
  color: rgb(255, 255, 255);
}

.footer-link:link,
.footer-link:visited {
  color: rgb(255, 255, 255);
}

.footer-link:hover,
.footer-link:active {
  color: #4d4d4d;
}

