@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #111;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== HEADER ===== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: #000;
}

/* przyciski */
nav {
  display: flex;
  gap: 14px;
}

/* baza */
.btn {
  border: none;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  background: #fff;
  font-weight: bold;
}

/* Zaloguj – jak link premium */
.btn-login {
  color: #333;
}

.btn-login:hover {
  background: #333;
  color: #f2f2f2;
}

/* Zarejestruj – delikatne CTA */
.btn-register {
  color: #6a3df0;
}

.btn-register:hover {
  background: #6a3df0;
  color: white;
}
/* ===== MAIN ===== */
main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

main h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* ===== FOOTER ===== */
footer {
  background: #6a3df0;
  color: white;
  text-align: center;
  padding: 24px;
}