/* CONTACT FORM 7 */
.custom-cf7-form .cf7-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.custom-cf7-form .cf7-col {
    flex: 1;
}

.custom-cf7-form .cf7-full {
    margin-bottom: 15px;
}

.custom-cf7-form input[type="text"],
.custom-cf7-form input[type="email"],
.custom-cf7-form input[type="tel"],
.custom-cf7-form textarea {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 10px 15px;
    color: #495f76;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.custom-cf7-form input:focus,
.custom-cf7-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(73, 95, 118, 0.15);
}

.cf7-dsgvo {
    margin-bottom: 20px;
}

.cf7-dsgvo label {
    font-size: 18px;
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #495f76;
}

.cf7-dsgvo .wpcf7-list-item-label {
    font-size: 16px;
    font-weight: 400;
}

.cf7-dsgvo .wpcf7-list-item-label a {
    font-weight: 700;
}

.cf7-dsgvo p {
    margin: 0 !important;
    display: inline-block;
}

.cf7-dsgvo br {
    display: none !important;
}

.cf7-dsgvo .wpcf7-list-item {
    margin-left: 0;
}

.custom-cf7-form input[type="submit"] {
    background-color: #495f76;
    color: #fff;
    border: none;
    font-size: 16px;
    line-height: 1.4em;
    padding: .7em 2.1em;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-cf7-form input[type="submit"]:hover {
    cursor: pointer;
    transform: scale(1.02);
    transition: all 300ms ease 0ms;
}

@media (max-width: 980px) {

    .custom-cf7-form input[type="text"],
    .custom-cf7-form input[type="email"],
    .custom-cf7-form input[type="tel"],
    .custom-cf7-form textarea {
        font-size: 15px;
    }

    .cf7-dsgvo label {
        font-size: 17px;
    }

    .cf7-dsgvo .wpcf7-list-item-label {
        font-size: 15px;
    }

    .custom-cf7-form input[type="submit"] {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .custom-cf7-form .cf7-row {
        flex-direction: column;
        gap: 15px;
    }

    .custom-cf7-form input[type="text"],
    .custom-cf7-form input[type="email"],
    .custom-cf7-form input[type="tel"],
    .custom-cf7-form textarea {
        font-size: 14px;
    }

    .cf7-dsgvo label {
        font-size: 16px;
    }

    .cf7-dsgvo .wpcf7-list-item-label {
        font-size: 14px;
    }

    .custom-cf7-form input[type="submit"] {
        font-size: 14px;
    }
}