.login-container {
  position: relative;
  z-index: 1;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.login-card {
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

.login-logo img {
  width: 100px;
  max-width: 100vw;
  height: auto;
}

.login-card h1 {
  font-size: clamp(1.6rem, 5vw, 2rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.login-card p {
  font-size: clamp(0.85rem, 3.5vw, 1rem);
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}