.panel form .fieldWrapper {
    margin: 10px 0;
}

.panel form input,
.panel form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.panel form textarea {
    resize: none;
}

.panel form ul.errorlist {
    list-style-type: none;
    color: #e63946;
    font-size: small;
}

.panel form .error input,
.panel form .error textarea {
    border-color: #e63946;
}

.panel form .checkboxWrapper {
    display: flex;
    align-items: center;
}

.panel form .checkboxWrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 10px;
    height: 10px;
    border: 1px solid #555;
    display: inline-block;
    position: relative;
}

.panel form .checkboxWrapper label {
    margin-left: 20px;
}

.panel form input[type="checkbox"]:checked {
    background-color: #555;
}

.panel form .error input[type="checkbox"]:checked {
    background-color: #e63946;
}

.panel form input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.panel form .error input[type="checkbox"] {
    border-color: #e63946;
}

.panel form button {
    width: 100%;
    padding: 10px;
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
	margin-top: auto; /* Przycisk zostanie wypchnięty na dół formularza */
}

.panel form button.blue {
    background-color: #1e98d7;
}

.panel form button:hover {
    background-color: #d62828;
}

.panel form button.blue:hover {
    background-color: #0a6495;
}

.panel .form-link a {
    display: block;
    text-align: center;
    margin-top: 10px;
}
