/* ---------- General Reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Body Layout ---------- */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  flex-direction: column;
}

/* ---------- Login Container ---------- */
.login-container {
  background-color: #000;
  color: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  width: 380px;
  max-width: 90%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ---------- Title ---------- */
.app-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 30px;
}

/* ---------- Google Button ---------- */
#loginBtn {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

#loginBtn img {
  width: 22px;
  height: 22px;
}

#loginBtn:hover {
  background-color: #f5f5f5;
  transform: scale(1.03);
}

/* ---------- Footer ---------- */
footer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #555;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .login-container {
    padding: 35px 25px;
    width: 90%;
  }

  .app-title {
    font-size: 1.6rem;
  }

  #loginBtn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  footer {
    font-size: 0.7rem;
  }
}