.login-page-container {
  width: 100%;
}

body:has(.login-background) {
  overflow-x: hidden;
}

.login-background {
  background-image: url("/assets/towfiqu-barbhuiya-nApaSgkzaxg-unsplash-8c129eb4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 56px); /* Height of navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media (min-width: 992px) {
  .login-background {
    justify-content: flex-end;
    padding-right: 10%;
  }
}

.login-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 450px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.unsplash-credit {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 0.8rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  border-radius: 4px;
}

.unsplash-credit a {
  color: #ddd;
  text-decoration: none;
}

.unsplash-credit a:hover {
  color: #fff;
  text-decoration: underline;
}
