:root {
  --primary: #8b5cf6;
  --bg-dark: #0f172a;
  --card-bg: rgba(30, 41, 59, 0.7);
  --text-main: #f1f5f9;
}

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top right, #1e1b4b, #0f172a);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--text-main);
}

.auth-container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

h3 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.form-control {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 14px;
  color: white !important;
  margin-bottom: 20px;
}

.form-control:focus {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}
.form-control::placeholder {
  color: var(--text-main);
}
#googleLogin {
  padding: 14px;
}
.btn-primary {
  background: var(--primary);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.3);
}

.btn-outline-secondary {
  border: 1px solid #334155;
  color: #cbd5e1;
  background: transparent;
}

.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: #475569;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #64748b;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.divider:not(:empty)::before {
  margin-right: 0.25em;
}

.divider:not(:empty)::after {
  margin-left: 0.25em;
}

.divider::before,
.divider::after {
  border-bottom: 1px solid #334155;
}

.footer-link {
  color: var(--primary);
  font-weight: 600;
}
