/* Plik: style.css */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  background-color: #f9f9f9;
  color: #222;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}
.login-container, .content-container {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.content-container {
  max-width: 800px;
  align-items: flex-start;
}
h2 {
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  margin-bottom: 25px;
}
label {
  display: block;
  margin: 12px 0 4px;
  font-weight: 500;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  box-sizing: border-box; /* Ważne dla spójności */
}
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  background-color: #EA4C9D;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #F067AE;
}
.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 180px;
}
.error {
  background: #ffebee;
  color: #c62828;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #c62828;
  margin-bottom: 15px;
  text-align: center;
}
.success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #2e7d32;
  margin-bottom: 15px;
  text-align: center;
}
.text-center {
  text-align: center;
}
.mt-20 {
  margin-top: 20px;
}
a {
  color: #EA4C9D;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}