.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 30px;
    border-left: 1px solid #e2e2e2;
}

.contact-form h3 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    font-family: "Archivo Black", roboto, sans-serif;
    color: #5f5f5f;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-top: 20px;
}

.form-pole {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-form_input {
    padding: 10px;
    width: 80%;
    border-radius: 10px;
    border: 1px solid gray;
    font-size: clamp(1rem, 5vw, 1.7rem);
    color: #5f5f5f;
    font-family: 'Century Gothic', roboto, sans-serif;
}
.contact-form_input::placeholder {
    color: #bebebe;
}
.contact-form_input:focus {
    outline: 2px solid #d40f0f71;
    outline-offset: 1px;
}

.form-pole label {
    font-size: clamp(1rem, 5vw, 1.7rem);
    font-family: 'Century Gothic', roboto, sans-serif;
    font-weight: bold;
    color: #5f5f5f;
}

.form-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.form-pole textarea {
    height: 120px;
}

.form-pole.double-form {
    flex-direction: row;
}

.contact_form-imie, .contact_form-tel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: 100%;
}

#contact_form-blad {
    padding-top: 10px;
    font-family: 'Century Gothic', roboto, sans-serif;
}

.contact-form button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FF0000;
    background: -webkit-linear-gradient(313deg, rgba(255, 0, 0, 1) 0%, rgba(206, 1, 1, 1) 50%, rgba(173, 2, 2, 1) 100%);
    background: -moz-linear-gradient(313deg, rgba(255, 0, 0, 1) 0%, rgba(206, 1, 1, 1) 50%, rgba(173, 2, 2, 1) 100%);
    background: linear-gradient(313deg, rgba(255, 0, 0, 1) 0%, rgba(206, 1, 1, 1) 50%, rgba(173, 2, 2, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF0000", endColorstr="#AD0202", GradientType=0);
    padding: 16px 20px;
    width: 80%;
    border: none;
    border-radius: 10px;
    font-size: clamp(1.2rem, 6vw, 2rem);
    font-family: "Archivo Black", roboto, sans-serif;
    color: rgb(241, 241, 241);
    transition: opacity 0.35s ease;
}
.contact-form button:hover {
    background: #e60000;
    background: -webkit-linear-gradient(313deg, rgba(230, 0, 0, 1) 0%, rgba(179, 0, 0, 1) 58%, rgba(133, 0, 0, 1) 100%);
    background: -moz-linear-gradient(313deg, rgba(230, 0, 0, 1) 0%, rgba(179, 0, 0, 1) 58%, rgba(133, 0, 0, 1) 100%);
    background: linear-gradient(313deg, rgba(230, 0, 0, 1) 0%, rgba(179, 0, 0, 1) 58%, rgba(133, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E60000", endColorstr="#850000", GradientType=0);
}
.contact-form button:active {
    opacity: 0.8;
}

.contact-form .required::after {
    content: " *"; 
    color: red;
    font-size: clamp(1rem, 5vw, 1.7rem);
}

.contact-form {
    border: none;
    border-top: 1px solid #e2e2e2;
}

.contact-form .counter{
    padding-top: 4px;
}
.contact-form .counter,
.contact-form #counter {
    font-family: 'Century Gothic', roboto, sans-serif;
    font-size: 12px;
    color: #5f5f5f;
}

.contact-form h3 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
}

.form-pole label {
    font-size: clamp(1rem, 5vw, 1.5rem);
}

#napisz_do_nas-section {
    width: 100%;
    margin-bottom: 20px;
}

#napisz_do_nas-section .sekcja-tekst {
    flex: 1 1 40%;
    justify-content: space-around;
}
#napisz_do_nas-section .sekcja-zdjecie {
    align-items: center;
    justify-content: center;
}


@media (max-width: 800px) {
    #napisz_do_nas-section {
        flex-direction: column;
    }
    #napisz_do_nas-section .sekcja-zdjecie {
        margin-bottom: 20px;
    }
    #napisz_do_nas-przycisk {
        padding: 10px 30px;
    }
}