.login-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
  padding: 40px 20px;
}

.login-container {
  width: 100%;
  max-width: 480px;
}

.login-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.login-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
}

.login-actions {
  margin-bottom: 24px;
}

.btn-google-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.btn-google-login:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.btn-google-login img {
  width: 24px;
  height: 24px;
}

.login-note {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .login-card {
    padding: 30px 20px;
  }
}
