.mhn-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.mhn-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.mhn-field {
    flex: 1 1 auto;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    color: #333;
    transition: border-color 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.mhn-field:focus {
    outline: none;
    border-color: #111;
}

.mhn-btn {
    flex: 0 0 auto;
    padding: 10px 22px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    white-space: nowrap;
}

.mhn-btn:hover {
    background: #333;
}

.mhn-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.mhn-message {
    width: 100%;
    min-height: 20px;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 4px;
    transition: opacity 0.3s;
}

.mhn-message.mhn-ok {
    color: #006621;
}

.mhn-message.mhn-err {
    color: #c00;
}
