/* Login Page Specific Styles */

.login-container {
  position: relative;
  z-index: 10;
  max-width: 500px;
  margin: 0 auto;
  padding: 10rem 2rem 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-container h1 {
  font-family: 'Assistant', 'Heebo', Arial, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: violet;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 1), 
               0 0 40px rgba(255, 255, 255, 1),
               0 0 60px rgba(200, 200, 255, 0.9);
}

.login-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 100%;
}

.login-box h2 {
  font-family: 'Heebo', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 2rem;
}

/* Google Sign-In Button Container */
.g_id_signin {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

/* User Info Display */
.user-info {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(238, 130, 238, 0.1);
  border-radius: 15px;
}

.user-info img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid violet;
}

.user-info h3 {
  font-family: 'Assistant', Arial, sans-serif;
  font-size: 1.8rem;
  color: violet;
  margin: 1rem 0 0.5rem;
}

.user-info p {
  font-family: 'Heebo', Arial, sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin: 0;
}

.signout-btn {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: violet;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Assistant', Arial, sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signout-btn:hover {
  background: gold;
  color: black;
}

/* Download Button */
.download-btn {
  margin-top: 2rem;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, violet 0%, gold 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Assistant', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 130, 238, 0.3);
  width: 100%;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 130, 238, 0.5);
}

.download-btn:active {
  transform: translateY(0);
}

/* Login Tabs */
.login-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(238, 130, 238, 0.2);
}

.tab-btn {
  flex: 1;
  padding: 1rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Assistant', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: violet;
  border-bottom-color: violet;
}

.tab-btn:hover {
  color: violet;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Direct Login Form */
.direct-login-form {
  margin-top: 2rem;
}

.direct-login-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, violet 0%, gold 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Assistant', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 130, 238, 0.3);
  margin-top: 1rem;
}

.direct-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 130, 238, 0.5);
}

.direct-login-btn:active {
  transform: translateY(0);
}

.direct-hint {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(238, 130, 238, 0.1);
  border-radius: 8px;
  border: 1px dashed rgba(238, 130, 238, 0.3);
}

.direct-hint p {
  font-family: 'Heebo', Arial, sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  text-align: center;
}

/* Pre-Registration Section */
.pre-registration-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(238, 130, 238, 0.3);
}

.pre-registration-section h3 {
  font-family: 'Assistant', Arial, sans-serif;
  font-size: 1.3rem;
  color: violet;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.waitlist-info {
  font-family: 'Heebo', Arial, sans-serif;
  font-size: 1rem;
  color: #666;
  margin: 0 0 1.5rem;
}

.register-btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, violet 0%, gold 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Assistant', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 130, 238, 0.3);
  width: 100%;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 130, 238, 0.5);
}

.register-btn:active {
  transform: translateY(0);
}

.register-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.registration-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 255, 0, 0.1);
  border-radius: 8px;
  border: 2px solid rgba(0, 200, 0, 0.3);
}

.registration-success p {
  font-family: 'Heebo', Arial, sans-serif;
  font-size: 1.1rem;
  color: #2d7a2d;
  margin: 0;
}

.registration-count {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(238, 130, 238, 0.1);
  border-radius: 10px;
  text-align: center;
  font-family: 'Assistant', Arial, sans-serif;
  font-size: 1.2rem;
  color: #333;
}

.registration-count #count-number {
  font-size: 1.8rem;
  font-weight: 600;
  color: violet;
}
