/**
 * Стили под поля Contact Form 7 на лендинге (рядом с Tailwind).
 */
.makebody-cf7 .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.makebody-cf7 .wpcf7-form-control-wrap {
    display: block;
}

.makebody-cf7 input[type="text"],
.makebody-cf7 input[type="email"],
.makebody-cf7 input[type="tel"],
.makebody-cf7 input[type="url"],
.makebody-cf7 textarea {
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    color: #111827;
}

.makebody-cf7.makebody-cf7--cta input[type="text"],
.makebody-cf7.makebody-cf7--cta input[type="email"],
.makebody-cf7.makebody-cf7--cta input[type="tel"],
.makebody-cf7.makebody-cf7--cta textarea {
    padding-left: 1rem;
    padding-right: 1rem;
}

.makebody-cf7 input:focus,
.makebody-cf7 textarea:focus {
    outline: none;
    border-color: #5dbe2e;
    box-shadow: 0 0 0 2px rgba(184, 245, 58, 0.3);
}

.makebody-cf7 input[type="submit"],
.makebody-cf7 .wpcf7-submit {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.makebody-cf7 input[type="submit"]:hover,
.makebody-cf7 .wpcf7-submit:hover {
    background: #333;
}

.makebody-cf7 .wpcf7-response-output {
    margin: 0.5rem 0 0;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
}

.makebody-cf7 .wpcf7-not-valid-tip {
    font-size: 0.75rem;
    color: #dc2626;
    margin-top: 0.25rem;
}

.makebody-cf7 .wpcf7-spinner {
    margin: 0 0 0 0.5rem;
}
