body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.formularz-logowania {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
}

.formularz-logowania h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #1a73e8;
  font-size: 24px;
}

.pole-input {
  margin-bottom: 20px;
}

.pole-input label {
  display: block;
  margin-bottom: 8px;
  color: #444;
  font-weight: 600;
  font-size: 14px;
}

.pole-input input,
.pole-input select {
  width: 100%;
  padding: 12px;
  border: 1px solid #dadce0;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px;
  transition: border-color 0.2s;
}

.pole-input input:focus {
  outline: none;
  border-color: #1a73e8;
}

.wybor-szkoly-kontener {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
}

.naglowek-sekcji {
  display: block;
  margin-bottom: 10px !important;
  color: #202124;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.opcje-radio {
  display: flex;
  gap: 20px;
}

.opcje-radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
  font-size: 14px;
}

.przycisk-zaloguj {
  width: 100%;
  padding: 14px;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.2s;
}

.przycisk-zaloguj:hover {
  background-color: #1557b0;
}

.ukryte {
  display: none;
}
