body {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    background: #f4f4f4;
    padding: 15px;
      
    background-image: url('./../../../../assets/images/tlo-www.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    background: #ffffff;
    max-width: 1200px;
}

h1 {
	font-size: 40px;
	padding: 10px;
    font-weight: 700;
    text-align: center;
}
	
h2, h3 {
	font-size: 30px;
    font-weight: 700;

}

img {
    max-width: 100%;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer .logos {
    width: 100%;
    max-height: 80px;
    background: #c9b29e;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

footer .copy {
    padding: 10px;
    text-align: center;
    font-size: 1rem;
    color: gray;
}

footer .copy a {
    color: #967736;
    text-decoration: none;
}

footer .copy a:hover {
    text-decoration: underline;
}

.photo {
    border-radius: 8px; 
}

/* Tekst informacyjny */
	
.info {
    display: flex;
    flex-direction: column; 
    gap: 20px;
    margin: 20px 0;
}
.info-item {
    display: flex;
    align-items: center;
    font-weight: bold;
}
.info-item span {
    margin-left: 8px;
    color: #555;
    font-weight: normal;
}
.section {
    margin-bottom: 10px;
}
.section h3 {
    margin-bottom: 10px;
    font-size: 18px;
}
.section p {
    margin: 6px 0;
    line-height: 1.4;
}
.link {
    display: inline-block;
    margin-top: 10px;
    background-color: #222;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}

/* Form */

form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}
  
.form-row {
    margin-bottom: 20px;
}
  
label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
  
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="checkbox"],
input[type="radio"] {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 3px solid #967736;
    border-radius: 6px;
    transition: border-color 0.3s;
}
  
input[type="radio"],
input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}
  
.error {
    color: red;
    font-size: 14px;
    margin-top: 4px;
}

/* Ukryj domyślne radio */
.toggle-radio-group input[type="radio"] {
    display: none;
}
  
/* Kontener przycisków wycentrowany */
.toggle-radio-group.centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* Styl przycisków */
.toggle-button {
    display: inline-block;
    padding: 10px 24px;
    background-color: #e0e0e0;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #333;
}
  
/* Hover efekt */
.toggle-button:hover {
    background-color: #d5d5d5;
}
  
/* Zaznaczony (aktywny) przycisk */
input[type="radio"]:checked + .toggle-button {
    background-color: #967736;
    border-color: #967736;
    color: #fff;
}

#potwierdzony_udzial {
  display: none;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  display: inline-block;
  font-weight: normal;
}

.text-justify {
  text-align: justify;
  letter-spacing: 0.3px;
  font-size: 16px;
  color: #969696;
  padding: 10px 0;
}

button[type="submit"] {
  padding: 12px 24px;
  background-color: #967736;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #a07c2e;
}

.submit-wrapper {
  text-align: center;
}

.alert-success {
    margin-top: 30px;
    text-align: center;
    background: #c9b29e;
    border-radius: 0 !important;
    border: none;
    color: #595048;
    font-size: 1.5rem;
}