/* === Page Lock and Base === */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden; /* prevent scrolling */
  font-family: 'Inter', sans-serif;
}

/* === Main Container === */
.login-container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

/* === Left Half (light neutral area) === */
.login-left {
  flex: 1;
  background: #f9f9f9;
}

/* === Right Half (dark tone for contrast) === */
.login-right {
  flex: 1;
  background: #555555;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Center Content === */
.login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f1f5f9;
  max-width: 400px;
  width: 90%;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

/* === Headings and Subtitles === */
.login-content h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 30px;
}

/* === Google Sign-In Button Container === */
#googleLoginBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

/* === Privacy Note === */
.privacy-note {
  font-size: 0.9rem;
  color: #cbd5e1;
  max-width: 300px;
  line-height: 1.4;
  text-align: center;
}

/* === Subtle Fade-in Animation === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(-20px);
  }
}
