.form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form label {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.form__label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #154189;
    margin-bottom: 6px;
    line-height: 1.4;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea,
.form select {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.form textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #999;
    font-size: 14px;
}

/* Текст согласия */
.form__consent {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
}

.form__consent a {
    color: #154189;
    transition: color 0s;
}

.form__consent a:hover {
    color: #3379dc;
    text-decoration: underline;
}

/* CF7 сообщения */
.form .wpcf7-response-output {
    margin: 15px 0 0 0;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.form .wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.form .wpcf7-not-valid-tip {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}