body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #74ebd5, #9face6);
  color: #222;
  text-align: center;
  min-height: 100vh;
  margin: 0;
  animation: fadeIn 0.6s ease-in;
}

h2 {
  margin-top: 40px;
  font-size: 28px;
  animation: slideDown 0.6s ease;
}

.login-box {
  margin-top: 150px;
  background: white;
  padding: 40px;
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: popIn 0.5s ease;
}

input, button {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
}

input {
  background: #f1f1f1;
}

button {
  background: #5b86e5;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #36d1dc;
  transform: scale(1.05);
}

.menu {
  max-width: 400px;
  margin: 40px auto;
}

.menu a {
  display: block;
  background: white;
  margin: 15px;
  padding: 18px;
  color: #222;
  text-decoration: none;
  border-radius: 18px;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
  animation: popIn 0.5s ease;
}

.menu a:hover {
  background: #36d1dc;
  color: white;
  transform: translateY(-5px) scale(1.05);
}

/* ✅ LICZNIK */
#timer {
  position: fixed;
  top: 15px;
  right: 20px;
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: pulse 1.5s infinite;
}

/* ✅ ANIMACJE */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.logo {
  position: fixed;
  bottom: 15px;
  left: 15px;
  width: 80px;      /* możesz zmienić */
  opacity: 0.9;
}

