body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-card {
  background: #121212;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
  width: 350px;
  text-align: center;
  animation: glow 3s infinite alternate;
}

h2 {
  margin-bottom: 10px;
}

p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.google-btn {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #ffffff10;
  border: 1px solid #444;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

.google-btn:hover {
  background: #ffffff22;
}

input {
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: white;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn {
  background: #00ffee;
  color: #000;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: #00ccbb;
}

.divider {
  margin: 20px 0;
  color: #555;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 40%;
  background: #444;
  position: absolute;
  top: 50%;
}

.divider::before {
  left: 0;
}
.divider::after {
  right: 0;
}

.link-row {
  text-align: right;
  margin-bottom: 10px;
}

.link-row a {
  font-size: 0.85rem;
  color: #00ffee;
}

.switch {
  margin-top: 20px;
  font-size: 0.85rem;
}

.switch a {
  color: #00ffee;
  text-decoration: none;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
  }
}
