body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #1a73e8, #4fc3f7);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
}
.container {
  background: #ffffff22;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 500px;
  text-align: center;
  display: none;
  animation: fadeIn 0.8s ease;
}
.container.active {
  display: block;
}
h2 {
  margin-bottom: 20px;
}
input, button {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
}
button {
  background: #fff;
  color: #1a73e8;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}
button:hover {
  background: #f1f1f1;
}
.admin-btn {
  margin-top: 10px;
  background: #ffdd57;
  color: #000;
}
.candidate {
  background: #ffffff33;
  padding: 15px;
  margin: 15px 0;
  border-radius: 10px;
}
.candidate img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
canvas {
  background: white;
  border-radius: 10px;
  margin-top: 20px;
}
.title-logo {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: white;
}
.title-logo .main-text {
  font-size: 36px;
}
.title-logo .small-x {
  font-size: 20px;
  vertical-align: super;
  color: #ffcc00;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
