* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;

    background-image: url('tlo.webp');
    background-size: cover; /* Dopasowanie do całego ekranu */
    background-position: center; /* Wyśrodkowanie */
    background-repeat: no-repeat; /* Brak powtarzania */
    height: 100vh; /* Pełna wysokość ekranu */
    width: 100vw; /* Pełna szerokość ekranu */

    color: #333;
    padding: 20px;
}

.container {
    background-color: #ffffff;
    opacity: 0.8; /* 50% przezroczystości */
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #e61919; /* Czerwony kolor */
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    font-weight: bold;
}

input, textarea, select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px; /* Powiększony tekst */
    width: 100%;
}

select {
    height: 50px; /* Większa wysokość */
    border-radius: 10px; /* Zaokrąglone rogi */
    border: 2px solid #4CAF50; /* Zielona ramka */
    background-color: #f0f0f0; /* Jasne tło */
    cursor: pointer; /* Zmienia kursor na wskaźnik */
}

select:hover {
    background-color: #e0e0e0;
}

select option {
    font-size: 16px;
    padding: 5px;
}

input:focus, textarea:focus, select:focus {
    border-color: #28a745;
    outline: none;
}

button {
    padding: 12px;
    background-color: #e61919;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

button:active {
    background-color: #1e7e34;
}

.top-bar {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #333;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  z-index: 1000;
}

.top-bar a {
  color: white;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

