/* page-contact.css */

/* Formularz główny */
.contact-form {
    background: #f9f9f9;
    padding: 28px;
    border-radius: 12px;
    max-width: 760px;
    margin: 30px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.contact-form h3 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 700;
}

.contact-form h5 {
    margin: 0 0 24px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

/* Inputy */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 120px;
}

/* CAPTCHA */
.contact-captcha {
    background: #f1f1f1;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-captcha-question {
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
}

/* Radio opcje */
.captcha-options {
    display: block;
}

.captcha-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    cursor: pointer;
}

.captcha-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.captcha-option span {
    line-height: 1.3;
}

/* RODO */
.contact-rodo {
    background: #f1f1f1;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 22px;
    font-size: 16px;
}

.contact-rodo label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.contact-rodo input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.contact-rodo span {
    line-height: 1.4;
}

.contact-rodo a {
    text-decoration: underline;
}

/* Przycisk */
.contact-form input[type="submit"] {
    background: #1a237e;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form input[type="submit"]:hover {
    background: #3949ab;
}

/* Komunikaty */
.contact-success,
.contact-error {
    max-width: 760px;
    margin: 0 auto 20px;
    padding: 12px 14px;
    text-align: center;
    border-radius: 6px;
    font-weight: 700;
}

.contact-success {
    background-color: #d7ffd9;
    border: 1px solid #9acd9a;
    color: #2e7d32;
}

.contact-error {
    background-color: #ffe5e5;
    border: 1px solid #e57373;
    color: #c62828;
}