.auth-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.auth-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #333;
}

.google-btn {
  display: block;
  width: 100%;
  background-color: #4285F4;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-family: sans-serif;
  border: 1px solid #4285F4;
  transition: background-color 0.3s;
  text-align: center;
  margin-top: 10px;
}

.google-btn:hover {
  background-color: #357ae8;
  border-color: #357ae8;
  color: white;
}

.auth-divider {
  margin: 1.5rem 0;
  border-top: 1px solid #eee;
  position: relative;
  text-align: center;
}

.auth-divider span {
  background-color: white;
  padding: 0 10px;
  position: relative;
  top: -12px;
  color: #777;
  font-size: 0.9rem;
}
