.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.logo {
    max-height: 180px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #f4f6f8;
    color: #333;
    margin: 0;
    padding: 10px;
}

h1 {
    max-width: 820px;
    text-align: center;
    background: #458dad;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
    margin: 10px auto;
    font-size: 25px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

form {
    max-width: 790px;
    margin: 0 auto;
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

label {
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

input, select, textarea {
    margin: 0;
    box-sizing: border-box;
}

input[type="file"],
input[type="date"],
select,
textarea {
    width: 100%%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

input[type="file"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    border-color: #3498db;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type="checkbox"] {
    margin-right: 8px;
}

button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #458dad;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #346c85;
}

label {
    margin-top: 10px;
}

#map {
    height: 600px;
    margin-top: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    /*opacity: 0;
    animation: mapFadeIn 1.5s forwards;*/
}

.recaptcha-container {
    	width: 100%;
	margin: 0;
	padding: 10px;
    	display: flex;
    	flex-wrap: wrap;
    	justify-content: center;
}


.checkbox-inline {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-inline label {
    margin-top: -4px;
}

@keyframes mapFadeIn {
    to { opacity: 1; }
}

/*  Responsywność */
@media (max-width: 1024px) {
    body {
        padding: 10px;
    }
    form {
        padding: 15px;
    }
    h1 {
        font-size: 30px;
        padding: 10px;
    }
    button {
	margin-top:20px;    
        font-size: 40px;
        padding: 10px;
    }
    input[type="file"],
    input[type="date"],
    select,
    textarea {
        font-size: 30px;
    }
    label,p {
        font-size: 25px;
    }
    input[type="checkbox"],
    input[type="radio"] {
	transform: scale(1.5); /* 1.5 = 150% wielkości */
    	margin: 5px; /* żeby nie nachodziły na tekst */
    }
    .recaptcha-container {
    	height: 120px;
    }
    .g-recaptcha {
	margin-right: 200px;    
    	transform: scale(1.5); /* 1.5 = 150% wielkości */
    	transform-origin: 0 0; /* punkt odniesienia (lewy górny róg) */
    }

}
