/* Kontakt: formularz */

.contact-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.contact-form input[type="submit"] {
    background: #1a237e;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.contact-captcha {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-captcha-question {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.captcha-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.captcha-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.contact-rodo {
    background: #f1f1f1;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
}

.contact-rodo a {
    color: #1a237e;
    text-decoration: underline;
}

.contact-success {
    background-color: #d7ffd9;
    border: 1px solid #9acd9a;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #2e7d32;
}

.contact-error {
    background-color: #ffe5e5;
    border: 1px solid #e57373;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #c62828;
}
