body {
    min-height: 100vh;
    margin: 0;
    font-family: system-ui, sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
  }

  /* LEFT LOGO CENTERED VERTICALLY */
  .left-logo {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  }

  .left-logo img {
    height: 75px;
  }

  .slogan-instructions {
    text-align: right;

  }

  .logInBtn {
    border-radius: 0 8px 8px 0;
  }

  .backBtn {
    border-radius: 0px 0 0 0px;
  }

  /* LOGIN BOX */
  .signin-card {
    width: 380px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 30px 30px 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.4);
  }

  .saved-suggestion {
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    padding: 8px 10px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    background: #fafafa;
    cursor: pointer;
  }

  .btn-social {
    width: 100%;
    border-radius: 999px;
    margin-bottom: 8px;
  }

  /* FOOTER */
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
    font-size: 0.8rem;
    color: #eee;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  }

  .footer-links a {
    color: #eee;
    text-decoration: none;
    margin-right: 12px;
  }

  .photo-credit {
    position: fixed;
    bottom: 12px;
    left: 20px;
    color: #eee;
    font-size: 0.8rem;
  }

  @media (max-width: 768px) {
    .signin-card {
      width: 100%;
      margin: 20px;
    }

    .left-logo {
      top: 20px;
      transform: none;
    }
}

  #bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.container-fluid,
.alert {
  position: relative;
  z-index: 2;
}

.error__mssg {
  padding: 5px; 
  color: red;
  margin-bottom: 1px;
  width: 100%;
  background: #ffe6e6;
  text-align: center;
}