.pd-complaint-form {
max-width: 760px;
background: #ffffff;
border: 1px solid #e6e6e6;
border-radius: 14px;
padding: 24px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.pd-form-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
.pd-form-field {
margin-bottom: 16px;
}
.pd-iban-field {
grid-column: 1 / -1;
max-height: 0;
opacity: 0;
overflow: hidden;
transform: translateY(-4px);
transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}
.pd-iban-field.is-visible {
max-height: 200px;
opacity: 1;
transform: translateY(0);
}
.pd-form-field label,
.pd-form-field .pd-label {
display: block;
font-weight: 600;
margin-bottom: 6px;
}
.pd-form-field input[type="text"],
.pd-form-field input[type="email"],
.pd-form-field input[type="date"],
.pd-form-field textarea {
width: 100%;
border-radius: 10px;
border: 1px solid #d9d9d9;
padding: 10px 12px;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
background: #fff;
}
.pd-form-field textarea {
resize: vertical;
}
.pd-form-field input:focus,
.pd-form-field textarea:focus {
outline: none;
border-color: #0f6ab4;
box-shadow: 0 0 0 3px rgba(15, 106, 180, 0.15);
}
.pd-form-field.is-invalid input,
.pd-form-field.is-invalid textarea {
border-color: #cc1f1a;
box-shadow: 0 0 0 3px rgba(204, 31, 26, 0.1);
}
.pd-error {
display: block;
color: #cc1f1a;
font-size: 0.9rem;
margin-top: 6px;
}
.pd-required {
color: #cc1f1a;
}
.pd-form-errors {
background: #fff0f0;
border: 1px solid #f2b1b1;
color: #8a1f1f;
padding: 12px 16px;
border-radius: 10px;
margin-bottom: 20px;
}
.pd-form-errors ul {
margin: 8px 0 0;
padding-left: 18px;
}
.pd-radio-group {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.pd-consent label {
font-weight: 400;
}
.pd-form-actions {
margin-top: 8px;
}
.pd-complaint-form input[type="file"] {
padding: 8px 0;
}
.pd-complaint-form .description {
color: #5a5a5a;
font-size: 0.9rem;
margin: 6px 0 0;
}
.pd-turnstile {
margin-top: 8px;
}
.pd-complaint-success {
max-width: 760px;
background: #f3fbf5;
border: 1px solid #bfe3c8;
border-radius: 14px;
padding: 24px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.pd-complaint-success h2 {
margin: 0 0 8px;
}
.pd-honeypot {
position: absolute;
left: -9999px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}
@media (max-width: 720px) {
.pd-form-grid {
grid-template-columns: 1fr;
}
}