/* src/css/pages/login.css */
.login-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

/* Background glowing effects */
.glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background-color: rgba(234, 88, 12, 0.2);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background-color: rgba(255, 69, 0, 0.2);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.login-card {
  width: 100%;
  max-width: 400px;
  text-align: center;
  z-index: 10;
}

.login-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.login-brand {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.login-desc {
  color: #aaa;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background-color: white;
  color: #333;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  font-size: 1rem;
}

.btn-google:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
}

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