/* Reset stylów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ogólny układ */
body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px 20px 20px;
  text-align: center;
}

/* Kontener główny */
.container {
  max-width: 600px;
  width: 100%;
  background-color: #1e1e1e;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Teksty */
h1 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #ffcc00;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ENTER button */
.enter-btn {
  padding: 22px 0;
  font-size: 24px;
  width: 100%;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enter-btn:hover {
  background-color: #218838;
}

/* EXIT button */
.exit-form {
  margin-top: 20px;
  text-align: center;
}

.exit-btn {
  padding: 8px 25px;
  font-size: 14px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  width: auto;
}

.exit-btn:hover {
  background-color: #c82333;
}

/* LOGOS container & items */
.logos-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.logo-link {
  text-decoration: none;
  color: #ffcc00;
  font-weight: bold;
  max-width: 180px;
  display: block;
  text-align: center;
}

.logo-item {
  /* text-align: center; - już w .logo-link */
}

.logo-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.logo-link p {
  color: #ffcc00;
  font-weight: bold;
  font-size: 14px;
  margin: 0;
}

/* FOOTER */
footer {
  margin-top: 40px;
  max-width: 600px;
  width: 100%;
  color: white;
  font-size: 12px;
  text-align: center;
}

footer img {
  margin: 5px 10px;
  vertical-align: middle;
  max-height: 31px;
}

footer p {
  margin-top: 10px;
  font-size: 12px;
  color: white;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  h1 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  .enter-btn {
    font-size: 20px;
    padding: 20px 0;
  }

  .exit-btn {
    font-size: 13px;
    padding: 7px 20px;
  }

  .logos-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
