/* Login Page Styles */

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.login-card {
  background: var(--color-bg-elevated);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 3rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.login-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.login-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.login-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.discord-button {
  background-color: #5865f2;
  color: white;
}

.discord-button:hover {
  background-color: #4752c4;
  border-color: #5865f2;
}

.google-button {
  background-color: white;
  color: #1f1f1f;
  border: 2px solid #e0e0e0;
}

.google-button:hover {
  background-color: #f8f9fa;
  border-color: #4285f4;
}

.login-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.login-button-text {
  flex: 1;
  text-align: center;
}

.login-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-footer-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.login-footer-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.login-footer-link:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .login-card {
    padding: 2rem 1.5rem;
  }

  .login-title {
    font-size: 1.5rem;
  }

  .login-subtitle {
    font-size: 0.875rem;
  }

  .login-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .login-icon {
    width: 20px;
    height: 20px;
  }
}
