:root {
  --neon-gold: #FFD700;
  --neon-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 40px #FFD700, 0 0 80px #FFD700;
  --bg-color: #000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--bg-color);
  color: var(--neon-gold);
  overflow: hidden;
}

/* Wrapper */
.login-wrapper {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  box-shadow: var(--neon-shadow);
  animation: glow 3s infinite alternate;
  width: 350px;
}

/* Title */
.title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: var(--neon-shadow);
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--neon-gold);
  border-radius: 10px;
  background: transparent;
  color: var(--neon-gold);
  font-size: 1rem;
  outline: none;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

input:focus {
  box-shadow: var(--neon-shadow);
  background: rgba(255, 215, 0, 0.05);
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 10px;
  background: var(--neon-gold);
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--neon-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700;
}

.login-btn:active {
  transform: scale(0.95);
}

/* Signup Option */
.signup-option {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.signup-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.8rem 1.2rem;
  border: 2px solid var(--neon-gold);
  border-radius: 8px;
  color: var(--neon-gold);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: var(--neon-shadow);
}

.signup-btn:hover {
  background: var(--neon-gold);
  color: #000;
  text-shadow: none;
}

/* Animation */
@keyframes glow {
  from {
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
  }
  to {
    box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700, 0 0 80px #FFD700;
  }
}

/* OR divider */
.or-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--neon-gold);
  opacity: 0.8;
}
.or-divider span {
  flex: 1;
  height: 1px;
  background: var(--neon-gold);
  box-shadow: var(--neon-shadow);
}
.or-divider p {
  margin: 0 10px;
  font-size: 0.9rem;
}

/* Google Button */
.google-btn {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 10px rgba(255,215,0,0.4);
}

.google-btn img {
  width: 20px;
  height: 20px;
}

.google-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700;
}


/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Wrapper */
.login-wrapper {
  background: #111;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Title */
.title {
  font-size: 26px;
  font-weight: bold;
  color: gold;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

input {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #1c1c1c;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

input:focus {
  border-color: gold;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Buttons */
.login-btn {
  width: 100%;
  padding: 12px;
  background: gold;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* OR Divider */
.or-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.or-divider span {
  flex: 1;
  height: 1px;
  background: #333;
}

.or-divider p {
  margin: 0 10px;
  color: #aaa;
  font-size: 13px;
}

/* Google Button */
.google-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #1c1c1c;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
}

.google-btn img {
  width: 20px;
  height: 20px;
}

.google-btn:hover {
  border-color: gold;
  background: #222;
  transform: translateY(-2px);
}

/* Signup / Login Option */
.signup-option {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.signup-option a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
}

.signup-option a:hover {
  text-decoration: underline;
}
