
.te-public-form-wrap {
    margin-block: 2rem;
    padding: clamp(1.2rem, 4vw, 2rem);
    border: 1px solid #dce3ee;
    border-radius: 18px;
    background: #fff;
}

.te-public-form label {
    display: block;
    color: #111827;
    font-weight: 700;
}

.te-public-form input[type="text"],
.te-public-form input[type="email"],
.te-public-form input[type="url"],
.te-public-form textarea {
    box-sizing: border-box;
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid #b8c4d6;
    border-radius: 8px;
    background: #fff;
}

.te-public-form input:focus,
.te-public-form textarea:focus {
    border-color: #196eeb;
    outline: 3px solid rgba(25, 110, 235, 0.18);
}

.te-public-form button {
    padding: 0.75rem 1.25rem;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #196eeb;
    font-weight: 800;
}

.te-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.te-form-consent label {
    display: flex;
    gap: 0.5rem;
    font-weight: 400;
}

.te-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.te-form-notice {
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
}

.te-form-notice--success {
    color: #05603a;
    background: #dcfae6;
}

.te-form-notice--error {
    color: #912018;
    background: #fee4e2;
}

@media (max-width: 640px) {
    .te-form-grid {
        grid-template-columns: 1fr;
    }
}
