.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f5f5;
}

.auth-card {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 320px;
}

.auth-card h1 {
  margin: 0 0 30px 0;
  color: #333;
  font-size: 24px;
}

.google-button {
  display: inline-flex;
  align-items: center;
  background: #4285f4;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s;
}

.google-button:hover {
  background: #357ae8;
}

.google-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
