body {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #696969;
        }
        .container {
            background: white;
          /*  padding: 30px;*/
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header {
            text-align: center;
            background: #E1F5FE
            color: grey;
			
         
        /*    margin: -30px -30px 30px -30px; */
         /*   border-radius: 8px 8px 0 0; */
		}
			.header .baner {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 200px; /* możesz zmienić */
    object-fit: cover;
  /*  border-radius: 8px 8px 0 0;*/
        }
        .alert {
            background: #E1F5FE;
			/*text-align: center;*/
          font-family:verdana;
		  font-size:12px;
            padding: 1px 0px 15px 0px;
          
            border-radius: 4px;
            color: grey;
            font-weight: bold;
        }
		h1 {
			text-align:center;
			font-size:16px;
		}
		hr {
    border: none;          /* usuwa domyślną ramkę */
    height: 1px;           /* wysokość linii */
    background-color: gray; /* kolor linii */
    margin: 10px 5px;        /* odstępy nad i pod linią */
}
	
        .section {
            margin: 30px 0;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .section-title {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 15px;
            color: #333;
            border-bottom: 2px solid #eee;
            padding-bottom: 5px;
        }
        .row {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }
        .col {
            flex: 1;
        }
        .col-2 {
            flex: 2;
        }
        label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }
       .dependent, .required {
            color: grey;
        }
        input, select, textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
            box-sizing: border-box;
        }
        textarea {
            height: 80px;
            resize: vertical;
        }
        .help-text {
            font-size: 12px;
            color: #666;
            margin-top: 3px;
        }
        .checkbox-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 15px 0;
        }
        .checkbox-row input {
            width: auto;
            margin-top: 3px;
        }
        .checkbox-row label {
            font-weight: normal;
            margin-bottom: 0;
        }
        
		.submit-btn {
  background-color: #008CBA;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
 display: block;
            margin: 30px auto;
  font-size: 16px;
}
.submit-btn:hover {
	background-color:red;
}
.submit-btn:active {
	position:relative;
	top:1px;
}

.contact-info {
	text-align:center;
	background: #E1F5FE;
	padding: 5px;
}
	
		
        .hidden {
            display: none;
        }
        a {
            color: #1976d2;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .row {
                flex-direction: column;
                gap: 0;
            }
            body {
                margin: 10px;
                padding: 10px;
            }
        }

 /* dodatkowe style błędów i komunikatów (dodałem tak, by pasowało do twojego designu) */
.field-error { border-color: #d32f2f !important; box-shadow: 0 0 0 3px rgba(211,47,47,0.06); }
.error-msg { color: red; font-size: 13px; margin-top:6px; }
.success-box { background:#e8ffe8; border:1px solid #4caf50; padding:15px; border-radius:6px; color:#2e7d32; }
