* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f0f2f5;
    margin: 0;
    padding: 0;
    color: #1d1d1f;
}
.wrapper {
    max-width: 760px;
    margin: 40px auto;
    background: #fff;
    border-radius: 10px;
    padding: 32px 40px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
h1 { font-size: 22px; margin-bottom: 4px; }
.subtitle { color: #666; margin-top: 0; margin-bottom: 28px; }
.form-list { list-style: none; padding: 0; }
.form-list li {
    margin-bottom: 12px;
    background: #e7edf5;
    border-radius: 10px;
    padding: 6px;
}
.form-list a {
    display: block;
    padding: 16px 20px;
    background: #fff4e5;
    border: 1px solid #f3c98b;
    border-radius: 8px;
    text-decoration: none;
    color: #8a5a00;
    font-weight: 600;
    transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.form-list a:hover {
    background: #f59e0b;
    border-color: #d97706;
    color: #fff;
    transform: translateY(-1px);
}

/* Διατηρείται η κλάση leave-btn για συμβατότητα, ίδιο στυλ με τα υπόλοιπα */
.form-list a.leave-btn {
    background: #fff4e5;
    border: 1px solid #f3c98b;
    color: #8a5a00;
}
.form-list a.leave-btn:hover {
    background: #f59e0b;
    border-color: #d97706;
    color: #fff;
    transform: translateY(-1px);
}
.field { margin-bottom: 18px; }
label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=month],
textarea, select, input[type=file] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d0d2d6;
    border-radius: 6px;
    font-size: 16px; /* 16px+ αποτρέπει αυτόματο zoom σε iOS κατά το focus */
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}
input[type=date], input[type=month] { appearance: auto; -webkit-appearance: auto; }
textarea { min-height: 100px; resize: vertical; }
input[readonly] { background: #f0f1f3; color: #555; cursor: not-allowed; }
.required { color: #c0392b; }
.hint { font-size: 12px; color: #888; margin-top: 4px; }
.btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-height: 48px; /* καλό μέγεθος για άγγιγμα σε κινητό */
}
.btn:hover { background: #1d4ed8; }
.error-box {
    background: #fdecea;
    border: 1px solid #f5c2c0;
    color: #92201b;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.error-box ul { margin: 6px 0 0 18px; padding: 0; }
.success-box {
    background: #eafaf0;
    border: 1px solid #b9e8c9;
    color: #1e6b3d;
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;
}
.back-link { display: inline-block; margin-top: 24px; color: #2563eb; text-decoration: none; font-size: 14px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ---------------- Responsive: Tablet (έως 768px) ---------------- */
@media (max-width: 768px) {
    .wrapper {
        max-width: 100%;
        margin: 20px 16px;
        padding: 24px;
    }
}

/* ---------------- Responsive: Κινητό (έως 480px) ---------------- */
@media (max-width: 480px) {
    .wrapper {
        margin: 0;
        border-radius: 0;
        padding: 20px 16px 28px;
        box-shadow: none;
        min-height: 100vh;
    }
    h1 { font-size: 19px; }
    .subtitle { font-size: 14px; margin-bottom: 20px; }
    .form-list a { padding: 14px 16px; font-size: 15px; }
    .field { margin-bottom: 16px; }
    .btn { width: 100%; }
    label { font-size: 13px; }
}
